/* ================================================
   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: 90px;
}

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-block;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 50px;
}

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

.eyebrow.centered {
    padding-left: 0;
    padding: 0 60px;
}

.eyebrow.centered::before {
    left: 0;
}

.eyebrow.centered::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 36px;
    height: 1px;
    background: var(--gold);
}

/* ============ 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: 22px 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: 14px 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: 72px;
    width: auto;
    display: block;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.55);
    padding: 4px 10px;
    background: rgba(10, 22, 40, 0.4);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.nav-logo:hover img {
    border-color: var(--gold);
    background: rgba(10, 22, 40, 0.6);
}

.nav.scrolled .nav-logo img {
    height: 58px;
    background: transparent;
}

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

.nav-links a {
    color: var(--ivory);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.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;
}

.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;
    gap: 10px;
    padding: 16px 34px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(245, 239, 226, 0.35);
}

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

.btn-dark {
    background: var(--navy-900);
    color: var(--ivory);
}

.btn-dark:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
}

.btn .arrow {
    transition: var(--transition);
}

.btn:hover .arrow {
    transform: translateX(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);
}

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

.hero-badge .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 8px;
    color: var(--ivory);
}

/* Marquee */
.marquee {
    background: var(--navy-900);
    color: var(--ivory);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 32s linear infinite;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
}

.marquee-track span {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

@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: 50px 40px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(245, 239, 226, 0.06);
    transform: translateY(-6px);
    border-color: rgba(201, 169, 97, 0.4);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--navy-900);
}

.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 40%, rgba(10, 22, 40, 0.92) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
}

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

.collection-overlay .cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
}

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

/* ============ 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: var(--transition);
    border-left: 3px solid transparent;
    box-shadow: var(--shadow-soft);
}

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

.service-card .num {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

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

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

.service-card .link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-900);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-bottom: 1px solid var(--navy-900);
    padding-bottom: 4px;
}

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

/* ============ 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;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
}

.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;
    padding: 6px 0;
    font-size: 0.88rem;
    color: rgba(245, 239, 226, 0.85);
}

.hours-list li span:last-child {
    color: var(--ivory);
    font-weight: 500;
}

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

/* 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 0;
    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: var(--transition);
    outline: none;
}

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

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

.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: 38px;
    height: 38px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 239, 226, 0.75);
    margin-left: 0 !important;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-900);
    border-color: var(--gold);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

/* ============ 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: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--ivory);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--gold);
}

.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: 50px 40px;
    text-align: left;
    border-top: 3px solid var(--gold);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
}

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

.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: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    padding: 12px 0;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.filter-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--navy-900);
}

.filter-btn.active::after {
    width: 100%;
}

.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: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

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

.catalog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.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);
}

/* ---------- Range taglie a 4 colonne ---------- */
.features-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ---------- Tabelle misura girovita ---------- */
.size-tables {
    display: flex;
    flex-direction: column;
    gap: 34px;
    max-width: 1000px;
    margin: 0 auto;
}

.size-table-block {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--gold);
    padding: 30px 34px 34px;
}

.size-table-head {
    margin-bottom: 22px;
}

.size-table-head h3 {
    color: var(--navy-900);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.size-table-head p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.size-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    min-width: 560px;
}

.size-table th {
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: var(--gold);
    padding: 10px 12px;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-soft);
}

.size-table td {
    text-align: center;
    padding: 10px 8px;
    border-bottom: 1px solid var(--border-soft);
    border-left: 1px solid var(--border-soft);
    min-width: 40px;
}

.size-row-tag td {
    font-weight: 600;
    color: var(--navy-900);
    background: var(--ivory);
}

.size-row-cm td {
    color: var(--text-muted);
}

.size-tables-note {
    max-width: 1000px;
    margin: 34px auto 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.size-tables-note a {
    color: var(--gold);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.size-tables-note a:hover {
    border-bottom-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: 72px;
    height: 72px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold);
    font-style: italic;
    background: var(--white);
    position: relative;
    z-index: 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: var(--transition);
}

.faq-item.open {
    border-left-color: var(--gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 34px;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--navy-900);
    transition: var(--transition);
}

.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;
}

/* ---------- 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;
    }

    .features-grid-4 {
        grid-template-columns: repeat(2, 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: 60px;
        padding: 3px 8px;
    }

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

    /* 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;
    }

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

    .nav-logo img {
        height: 52px;
        padding: 3px 6px;
    }

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

    .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: 46px;
    }

    .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;
}
