/* ═══════════════════════════════════════════════════════════════
   EventHaus — Premium Event Furniture Rental
   Visual: Dark warm base, champagne gold, baroque restraint
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    /* Palette */
    --bg-dark:       #111110;
    --bg-card:       #1a1915;
    --bg-elevated:   #242320;
    --bg-hover:      #2a2925;
    --surface:       #1e1d1a;

    --gold:          #c9a96e;
    --gold-light:    #dfc499;
    --gold-dim:      #8a7548;
    --gold-glow:     rgba(201, 169, 110, 0.12);

    --text-primary:  #f0ece4;
    --text-secondary:#a09888;
    --text-muted:    #6b6358;
    --text-inverse:  #111110;

    --border:        #2e2d28;
    --border-subtle: #222120;
    --border-gold:   rgba(201, 169, 110, 0.25);

    --success:       #6b9f6b;
    --error:         #c45c5c;

    /* Type Scale */
    --font-display:  'DM Serif Display', Georgia, serif;
    --font-body:     'Inter', -apple-system, sans-serif;

    --fs-hero:       clamp(3rem, 8vw, 7rem);
    --fs-h1:         clamp(2rem, 4vw, 3.5rem);
    --fs-h2:         clamp(1.5rem, 3vw, 2.5rem);
    --fs-h3:         clamp(1.25rem, 2vw, 1.75rem);
    --fs-body:       1rem;
    --fs-small:      0.875rem;
    --fs-xs:         0.75rem;

    /* Spacing */
    --space-xs:      0.5rem;
    --space-sm:      1rem;
    --space-md:      2rem;
    --space-lg:      4rem;
    --space-xl:      8rem;
    --space-2xl:     12rem;

    /* Layout */
    --container:     1280px;
    --container-wide:1440px;
    --gutter:        clamp(1rem, 3vw, 3rem);

    /* Motion */
    --ease-out:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
    --duration:      0.4s;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--bg-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--duration) var(--ease-smooth); }
a:hover { color: var(--gold-light); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.container--wide {
    max-width: var(--container-wide);
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

.section-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: var(--fs-h2);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border: 1px solid var(--border-gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all var(--duration) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration) var(--ease-smooth);
    z-index: 0;
}

.btn:hover { color: var(--text-inverse); border-color: var(--gold); }
.btn:hover::before { transform: scaleX(1); }
.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; width: 16px; height: 16px; }

.btn--solid {
    background: var(--gold);
    color: var(--text-inverse);
    border-color: var(--gold);
}
.btn--solid::before { background: var(--gold-light); }

.btn--sm {
    padding: 0.6rem 1.25rem;
    font-size: var(--fs-xs);
}

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all var(--duration) var(--ease-smooth);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(17, 17, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.75rem 0;
}

.header-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}
.site-logo em {
    font-style: italic;
    color: var(--gold);
}

.main-nav { display: flex; align-items: center; gap: 2.5rem; }
.main-nav a {
    font-size: var(--fs-small);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    transition: color var(--duration) var(--ease-smooth);
    position: relative;
}
.main-nav a:hover,
.main-nav a.current { color: var(--text-primary); }
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration) var(--ease-smooth);
}
.main-nav a:hover::after,
.main-nav a.current::after { width: 100%; }

.nav-cta {
    font-size: var(--fs-xs) !important;
    font-weight: 500 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
    color: var(--gold) !important;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border-gold);
    transition: all var(--duration) var(--ease-smooth) !important;
}
.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--text-inverse) !important;
    border-color: var(--gold) !important;
}
.nav-cta::after { display: none !important; }

/* Quote count badge */
.quote-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 600;
    background: var(--gold);
    color: var(--text-inverse);
    border-radius: 9px;
    margin-left: 0.35rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: var(--space-2xl) 0 var(--space-xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #1a1710 0%,
        #1f1c16 25%,
        #1a1710 50%,
        #161410 100%
    );
    background-size: cover;
    background-position: center;
}

.hero--has-bg .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 16, 0.55) 0%,
        rgba(17, 17, 16, 0.40) 40%,
        rgba(17, 17, 16, 0.65) 100%
    );
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(var(--gold) 1px, transparent 1px),
        linear-gradient(90deg, var(--gold) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-content .section-label {
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: var(--fs-hero);
    color: var(--text-primary);
    line-height: 1.05;
    margin-bottom: var(--space-md);
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    right: var(--gutter);
    bottom: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    z-index: 3;
}

.hero-stat {
    text-align: right;
}
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* Decorative line */
.hero-line {
    position: absolute;
    right: calc(var(--gutter) + 200px);
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
    z-index: 3;
}

/* ─── Categories Grid ───────────────────────────────────────── */
.categories-section {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border);
}

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

.category-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-card);
    cursor: pointer;
    display: block;
}

.category-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    background-size: cover;
    background-position: center;
    border-right: 1px solid var(--border-subtle);
    transition: transform 0.8s var(--ease-smooth);
}

.category-card:hover .category-card-bg {
    transform: scale(1.05);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,17,16,0.9) 0%, rgba(17,17,16,0.2) 60%);
    z-index: 1;
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    z-index: 2;
}

.category-card-name {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.category-card-count {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.category-card-arrow {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all var(--duration) var(--ease-smooth);
}

.category-card:hover .category-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.category-card-arrow svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

/* ─── Catalogue Grid ────────────────────────────────────────── */
.catalogue-section {
    padding: var(--space-xl) 0;
}

.catalogue-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.catalogue-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--duration) var(--ease-smooth);
}

.filter-btn:hover {
    border-color: var(--border-gold);
    color: var(--text-secondary);
}

.filter-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-md);
}

/* ─── Product Card ──────────────────────────────────────────── */
.product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all var(--duration) var(--ease-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}

.product-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-elevated);
    position: relative;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

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

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold-dim);
    background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--surface) 100%);
}

.product-card-category {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(17, 17, 16, 0.85);
    padding: 0.25rem 0.75rem;
    backdrop-filter: blur(8px);
}

.product-card-body {
    padding: var(--space-sm) var(--space-sm) var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-card-title a {
    color: inherit;
}
.product-card-title a:hover {
    color: var(--gold);
}

.product-card-excerpt {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    flex: 1;
}

.product-card-meta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-subtle);
}

.product-card-meta-item {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}
.product-card-meta-item strong {
    color: var(--text-secondary);
    font-weight: 500;
}

.product-card-actions {
    display: flex;
    gap: 0.5rem;
}

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

/* ─── Single Product ────────────────────────────────────────── */
.single-product {
    padding: calc(var(--space-xl) + 80px) 0 var(--space-xl);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-gallery-main {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    margin-bottom: var(--space-sm);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.product-gallery-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: border-color var(--duration) var(--ease-smooth);
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: var(--gold);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info { padding-top: var(--space-sm); }

.product-breadcrumb {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}
.product-breadcrumb a { color: var(--text-muted); }
.product-breadcrumb a:hover { color: var(--gold); }
.product-breadcrumb .sep { margin: 0 0.5rem; }

.product-title {
    font-size: var(--fs-h1);
    margin-bottom: var(--space-sm);
}

.product-excerpt {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.product-specs {
    border-top: 1px solid var(--border);
    padding-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.product-spec {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.product-spec-label {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-spec-value {
    font-size: var(--fs-small);
    color: var(--text-primary);
}

.product-add-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: var(--space-md);
}

.product-qty-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.qty-input {
    width: 80px;
    padding: 0.6rem;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    text-align: center;
}
.qty-input:focus {
    outline: none;
    border-color: var(--gold);
}

.qty-label {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

/* ─── Quote Selection Sidebar ───────────────────────────────── */
.selection-panel {
    position: fixed;
    right: -400px;
    top: 0;
    bottom: 0;
    width: 400px;
    max-width: 90vw;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 200;
    transition: right var(--duration) var(--ease-smooth);
    display: flex;
    flex-direction: column;
}

.selection-panel.open { right: 0; }

.selection-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration) var(--ease-smooth);
}
.selection-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.selection-header {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.selection-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.selection-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.25rem;
    transition: color var(--duration);
}
.selection-close:hover { color: var(--text-primary); }

.selection-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-sm);
}

.selection-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-bottom: 1px solid var(--border-subtle);
}

.selection-item-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    background: var(--bg-elevated);
    flex-shrink: 0;
}

.selection-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selection-item-info { flex: 1; }
.selection-item-name {
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--text-primary);
}
.selection-item-qty {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.selection-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    transition: color var(--duration);
}
.selection-item-remove:hover { color: var(--error); }

.selection-empty {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    color: var(--text-muted);
    font-size: var(--fs-small);
}

.selection-footer {
    padding: var(--space-md);
    border-top: 1px solid var(--border);
}

/* ─── Quote Request Form ────────────────────────────────────── */
.quote-form-section {
    padding: calc(var(--space-xl) + 80px) 0 var(--space-xl);
}

.quote-form-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-lg);
    align-items: start;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-label {
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input,
.form-textarea {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    transition: border-color var(--duration) var(--ease-smooth);
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

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

.quote-summary-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: var(--space-md);
    position: sticky;
    top: 120px;
}

.quote-summary-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
}

.quote-summary-items { margin-bottom: var(--space-md); }

.quote-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: var(--fs-small);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.quote-summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-sm);
    font-weight: 500;
    color: var(--text-primary);
}

/* ─── Process Section ───────────────────────────────────────── */
.process-section {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: var(--space-lg);
}

.process-step {
    background: var(--bg-card);
    padding: var(--space-md);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.process-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold-dim);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.process-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-desc {
    font-size: var(--fs-small);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── CTA Section ───────────────────────────────────────────── */
.cta-section {
    padding: var(--space-xl) 0;
    text-align: center;
    border-top: 1px solid var(--border);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: var(--fs-h1);
    margin-bottom: var(--space-sm);
    position: relative;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-md);
    position: relative;
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand-desc {
    font-size: var(--fs-small);
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: var(--space-sm);
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: var(--fs-small);
    color: var(--text-secondary);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* ─── Toast Notification ────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--border-gold);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    font-size: var(--fs-small);
    z-index: 300;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s var(--ease-smooth);
    max-width: 360px;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success { border-color: var(--success); }
.toast-error   { border-color: var(--error); }

/* ─── Page: Archive Header ──────────────────────────────────── */
.archive-header {
    padding: calc(var(--space-xl) + 80px) 0 var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.archive-title {
    font-size: var(--fs-h1);
    margin-bottom: 0.5rem;
}

.archive-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ─── No Results ────────────────────────────────────────────── */
.no-results {
    text-align: center;
    padding: var(--space-xl) 0;
    color: var(--text-muted);
}

.no-results h2 {
    margin-bottom: var(--space-sm);
}

/* ─── GSAP Reveal ───────────────────────────────────────────── */
/* GSAP sets autoAlpha: 0 on init — no CSS hidden needed.
   Fallback: if JS fails, content is visible. */

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .product-layout { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .quote-form-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { display: none; }
    .hero-line { display: none; }
}

@media (max-width: 768px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .catalogue-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .hero { min-height: 80vh; padding: var(--space-xl) 0 var(--space-lg); }

    .main-nav { display: none; }
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--bg-dark);
        padding: 80px var(--gutter) var(--gutter);
        z-index: 99;
        gap: var(--space-md);
    }
    .main-nav.open a { font-size: 1.25rem; }
    .nav-toggle { display: block; z-index: 101; }

    .catalogue-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
