/* ==========================================================================
   Miyabi Messer — Shared Stylesheet
   ========================================================================== */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --gold: #C9A227;
    --gold-light: #E8D5A3;
    --gold-dark: #8A6D1B;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-muted: #6b6b6b;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(201,162,39,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

::selection { background: var(--gold-dark); color: var(--text-primary); }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.jp { font-family: 'Noto Serif JP', serif; }
.gold-text { color: var(--gold); }
.muted { color: var(--text-muted); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Navigation */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}
#navbar.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 3rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
}
.logo::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.logo:hover::after { transform: scaleX(1); transform-origin: left; }

.logo-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-top: -2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--gold-dark);
    color: var(--gold-light);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero--compact { min-height: 60vh; }

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('img/miyabi-knives-hero-banner.jpg') center/cover no-repeat;
    filter: brightness(0.3) saturate(0.8);
    transform: scale(1.05);
    animation: fadeIn 2s ease forwards;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 50%, var(--bg-primary) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}
.hero p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1.5s both;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: fadeInUp 1.5s ease infinite alternate;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201,162,39,0.2);
}
.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.7rem;
}

/* Section styling */
section { padding: 7rem 2rem; }
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}
.section-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    opacity: 0.6;
}

/* Values */
.values { background: var(--bg-secondary); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.value-card {
    text-align: center;
    padding: 2rem;
}
.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    stroke-width: 1.5;
}
.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}
.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Featured Products */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.product-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-secondary);
}
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}
.product-card:hover .product-card__image img {
    transform: scale(1.05);
}
.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.product-card__body {
    padding: 1.8rem;
}
.product-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.product-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}
.product-card__link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.product-card__link:hover { color: var(--gold-light); }

/* Story */
.story {
    background: var(--bg-secondary);
    text-align: center;
}
.story-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}
.story h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
}
.story p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.9;
    font-size: 1rem;
}
.story-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.story-link:hover { color: var(--gold-light); }

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.product-card--compact .product-card__image { aspect-ratio: 1; }
.product-card--compact .product-card__body { padding: 1.2rem; }
.product-card--compact .product-card__title { font-size: 1rem; }
.product-card--compact .product-card__desc { font-size: 0.85rem; margin-bottom: 1rem; }

/* Proof */
.proof {
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.proof h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 3rem;
}
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.proof-stat {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}
.proof-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial {
    background: var(--bg-card);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
}
.testimonial::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.testimonial:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.testimonial:hover::before { transform: scaleX(1); }
.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}
.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-primary);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(0.4);
    flex-shrink: 0;
}
.testimonial-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}
.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ */
.faq { background: var(--bg-secondary); }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
    max-height: 400px;
    padding-bottom: 1.5rem;
}
.faq-a p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Newsletter */
.newsletter {
    text-align: center;
    border-top: 1px solid var(--border);
}
.newsletter h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}
.newsletter p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 1rem;
    border: 1px solid var(--border);
}
.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
    padding: 1rem 1.8rem;
    background: var(--gold);
    color: var(--bg-primary);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Service Pages — Page-specific styles
   ========================================================================== */

/* Breadcrumb */
.breadcrumb {
    padding: 7rem 2rem 0;
    background: var(--bg-primary);
}
.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.breadcrumb-inner a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner span { color: var(--gold); margin: 0 0.6rem; }

/* Page hero */
.page-hero {
    padding: 3rem 2rem 5rem;
    text-align: center;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
}
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}
.page-hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}
.page-hero p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* About: timeline */
.timeline-section {
    padding: 7rem 2rem;
    background: var(--bg-primary);
}
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0; bottom: 0;
    width: 1px;
    background: var(--border);
}
.timeline-item {
    position: relative;
    padding-left: 150px;
    margin-bottom: 3rem;
}
.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    width: 80px;
    text-align: right;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 96px;
    top: 0.6rem;
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
}
.timeline-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.timeline-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Contact: cards + form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
}
.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}
.contact-info-item {
    margin-bottom: 1.5rem;
}
.contact-info-item .label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.contact-info-item .value {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.contact-info-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info-item a:hover { color: var(--gold); }

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.contact-form .form-group {
    margin-bottom: 1.2rem;
}
.contact-form label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}
.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}
.contact-form button[type="submit"] {
    margin-top: 0.5rem;
    width: 100%;
}

/* Privacy: long-form content */
.legal-content {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}
.legal-inner {
    max-width: 800px;
    margin: 0 auto;
}
.legal-updated {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.legal-inner h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.legal-inner h2:first-of-type { margin-top: 0; }
.legal-inner h3 {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--gold-light);
}
.legal-inner p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.legal-inner ul {
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}
.legal-inner li { margin-bottom: 0.5rem; }
.legal-inner a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.legal-inner a:hover { border-bottom-color: var(--gold); }
.legal-toc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 3rem;
}
.legal-toc h3 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.legal-toc ol {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 2;
}
.legal-toc a { color: var(--text-secondary); }
.legal-toc a:hover { color: var(--gold); border: 0; }

.legal-contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}
.legal-contact-box p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--bg-primary);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}
.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: inline-block;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
    max-width: 280px;
}
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* Hamburger button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu ul {
    list-style: none;
    text-align: center;
    margin-bottom: 2rem;
}
.mobile-menu li {
    margin-bottom: 1.5rem;
}
.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-cta {
    border-color: var(--gold-dark);
}

/* Mobile */
@media (max-width: 900px) {
    .values-grid { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    #navbar { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: flex; }
    section { padding: 5rem 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .timeline::before { left: 8px; }
    .timeline-item { padding-left: 40px; }
    .timeline-year {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }
    .timeline-item::before { left: 4px; top: 0.4rem; }
    .hero-scroll { bottom: 1.5rem; }
    .cookie-popup { max-width: 340px; }
}
@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .product-card__badge { top: 0.5rem; left: 0.5rem; padding: 0.2rem 0.5rem; font-size: 0.6rem; }
    .product-card__body { padding: 1.2rem; }
    .product-card__title { font-size: 1rem; }
    .product-card__desc { font-size: 0.85rem; }
}
