/* =============================================
   JN METAL — SHARED STYLESHEET
   Primary: #bf1a1e  |  Light Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800;900&family=Barlow:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ── Variables ── */
:root {
    --red: #bf1a1e;
    --red-dark: #991518;
    --red-light: #d93237;
    --red-pale: #fdf0f0;
    --red-border: #f5c6c7;

    --white: #ffffff;
    --warm-white: #FAFAF7;
    --cream: #F5F1EB;
    --cream-mid: #EDE8DF;
    --cream-dark: #E3DDD3;
    --panel: #F0EDE7;

    --charcoal: #444546;
    --ink: #2E2C2B;
    --steel: #000;
    --steel-light: #000;
    --divider: #D8D2C8;

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-accent: 'Playfair Display', serif;

    --radius: 0px;
    --max: 1280px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Layout ── */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ── Typography helpers ── */
.label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--charcoal);
}

.section-title em {
    font-style: normal;
    color: var(--red);
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
    padding: 0.9rem 2rem;
    border: 2px solid var(--red);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
}

.btn-primary svg {
    transition: transform 0.2s;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: transparent;
    color: var(--charcoal);
    padding: 0.9rem 2rem;
    border: 2px solid var(--charcoal);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-outline:hover {
    background: var(--charcoal);
    color: #fff;
}

.btn-outline-red {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: transparent;
    color: var(--red);
    padding: 0.9rem 2rem;
    border: 2px solid var(--red);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-red:hover {
    background: var(--red);
    color: #fff;
}

/* ── Reveal animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible, .reveal-left.visible {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.08s !important;
}

.d2 {
    transition-delay: 0.16s !important;
}

.d3 {
    transition-delay: 0.24s !important;
}

.d4 {
    transition-delay: 0.32s !important;
}

.d5 {
    transition-delay: 0.40s !important;
}

.d6 {
    transition-delay: 0.48s !important;
}

/* ========================================
   TOPBAR
   ======================================== */
#topbar {
    background: var(--charcoal);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.55rem 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topbar-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.topbar-right a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    transition: color 0.2s;
}

.topbar-right a:hover {
    color: var(--red-light);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    display: inline-block;
}

/* ========================================
   NAVBAR
   ======================================== */
#navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--divider);
    transition: box-shadow 0.3s;
}

#navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 1rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.logo-mark span {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.logo-text {
    line-height: 1.1;
}

.logo-text strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: block;
}

.logo-text small {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--steel-light);
    font-weight: 500;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li a {
    font-family: var(--font-display);
    font-size: 0.90rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel);
    padding: 0 1rem;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--charcoal);
    border-bottom-color: var(--red);
}

.nav-cta-link {
    background: var(--red) !important;
    color: #fff !important;
    border-bottom: 2px solid var(--red-dark) !important;
    padding: 0 1.25rem !important;
    font-size: 0.90rem !important;
    transition: background 0.2s !important;
}

.nav-cta-link:hover {
    background: var(--red-dark) !important;
    border-color: var(--red-dark) !important;
    color: #fff !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    display: block;
    transition: 0.3s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 1000;
    padding: 2rem;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-links li a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--steel);
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--divider);
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.mobile-nav-links li a:hover {
    color: var(--red);
}

.mobile-contact-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--divider);
}

.mobile-contact-info a {
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
    display: block;
    margin-bottom: 0.5rem;
}

/* ========================================
   PAGE HERO (for inner pages)
   ======================================== */
.page-hero {
    background: var(--cream);
    border-bottom: 1px solid var(--divider);
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 79px, var(--divider) 79px, var(--divider) 80px);
    opacity: 0.4;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: var(--red);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel-light);
    margin-bottom: 1.25rem;
}

.breadcrumb a {
    transition: color 0.2s;
}

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

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

.breadcrumb-sep {
    opacity: 0.4;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.page-hero-title em {
    font-style: normal;
    color: var(--red);
}

.page-hero-sub {
    font-size: 0.95rem;
    color: var(--steel);
    font-weight: 450;
    max-width: 560px;
    line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
#site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.5);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.25rem;
}

.footer-brand .logo-text strong {
    color: #fff;
}

.footer-brand .logo-text small {
    color: rgba(255, 255, 255, 0.3);
}

.footer-desc {
    font-size: 0.99rem;
    color: #fff;
    line-height: 1.8;
    font-weight: 450;
    text-align: justify;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links li a {
    font-size: 0.99rem;
    color: #fff;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li a:hover {
    color: var(--red-light);
}

.footer-links li a::before {
    content: '›';
    color: var(--red);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.5;
}

.footer-contact-item a, .footer-contact-item span {
    font-size: 0.99rem;
    color: #fff;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--red-light);
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bar-copy {
    font-family: var(--font-display);
    font-size: 0.99rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.footer-bar-iso {
    font-family: var(--font-display);
    font-size: 0.99rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bar-iso::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    display: block;
    border-radius: 50%;
}

/* ========================================
   SHARED SECTION COMPONENTS
   ======================================== */

/* Stat blocks */
.stats-strip {
    background: var(--red);
    padding: 0;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.strip-stat {
    padding: 2.25rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.strip-stat:last-child {
    border-right: none;
}

.strip-stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}

.strip-stat-num span.c {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.7em;
}

.strip-stat-label {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* CTA banner */
.cta-banner {
    background: var(--cream-mid);
    border-top: 3px solid var(--red);
    padding: 4rem 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.01em;
}

.cta-banner h2 em {
    font-style: normal;
    color: var(--red);
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .strip-stat:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .topbar-left {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-strip-grid {
        grid-template-columns: 1fr 1fr;
    }
}
