/* ═══════════════════════════════════════
   M97 WORKSPACE — STYLESHEET
   ═══════════════════════════════════════ */

:root {
    --green: #9DB89B;
    --green-dark: #7a9978;
    --bg-dark: #111113;
    --bg-mid: #161618;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666;
    --border: rgba(255, 255, 255, 0.1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-dark);
}

html { scroll-behavior: smooth; }

/* ─── HERO ─── */
.hero {
    background-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.65) 60%,
        rgba(0,0,0,0.80) 100%
    ), url('images/bg2.jpg');
    background-size: cover;
    background-position: center 55%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 680px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin: 0 0 28px 0;
}

.hero h1 {
    font-family: var(--font-body);
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin: 0 0 30px 0;
    line-height: 1;
    color: #fff;
}

/* ─── NAV ─── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    transition: background 0.3s;
}

.site-nav.scrolled {
    background: rgba(10,10,12,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    line-height: 1;
}

.nav-logo-m {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.nav-logo-97 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.02em;
}

.nav-logo-sub {
    display: none;
}

.nav-contact {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-contact:hover {
    color: #fff;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
}

.hero-sub {
    font-size: 0.80rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin: 0 0 48px 0;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--green);
    color: #111;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 3px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

/* ─── SECTION LABEL ─── */
.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green);
    margin: 0 0 14px 0;
}

/* ─── INFO SECTION ─── */
.info-section {
    background-color: var(--bg-dark);
    padding: 100px 20px 80px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.concept-intro {
    max-width: 620px;
    margin: 0 auto 70px;
}

.concept-intro h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: 0.05em;
}

.concept-intro p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ─── SPECS BAR ─── */
.specs-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 80px;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.spec-item {
    flex: 1;
    min-width: 140px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.spec-value {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.05em;
}

.spec-label {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.spec-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
    flex-shrink: 0;
}

/* ─── FEATURES GRID ─── */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    padding: 40px 30px;
    border: 1px solid var(--border);
    text-align: left;
    transition: border-color 0.2s;
}

.feature-item:hover {
    border-color: rgba(255,255,255,0.25);
}

.feature-item h3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 18px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.feature-item p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

/* ─── PARALLAX DIVIDER ─── */
.image-divider {
    height: 220px;
    width: 100%;
    background-image: url('images/bg2.jpg');
    background-attachment: fixed;
    background-position: center 65%;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .image-divider { background-attachment: scroll; }
}

/* ─── DESTINATION ─── */
.destination-section {
    background-color: var(--bg-dark);
    padding: 100px 20px;
}

.destination-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.destination-content h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    margin: 0 0 36px 0;
    padding-left: 22px;
    border-left: 2px solid var(--green);
    letter-spacing: 0.05em;
}

.destination-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 22px;
}

.highlight {
    color: #fff;
    font-weight: 500;
}

.destination-closing {
    margin-top: 40px !important;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem !important;
    color: #fff !important;
    font-weight: 300;
}

/* ─── AUDIENCE CARDS ─── */
.audience-section {
    background-color: var(--bg-mid);
    padding: 100px 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.audience-grid {
    display: flex;
    gap: 2px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    flex: 1;
    min-width: 280px;
    max-width: 440px;
    padding: 50px 44px;
    border: 1px solid var(--border);
    text-align: left;
    transition: border-color 0.2s;
}

.audience-card:hover {
    border-color: rgba(255,255,255,0.2);
}

.audience-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    margin: 0 0 20px 0;
}

.audience-card p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0 0 28px 0;
}

.card-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

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

/* ─── FOOTER ─── */
.site-footer {
    background-color: #000;
    padding: 70px 20px 40px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.footer-col h4 {
    font-family: var(--font-body);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    color: #666;
    text-decoration: none;
    line-height: 2;
    display: block;
    transition: color 0.2s;
    font-weight: 300;
}

.footer-col a:hover { color: #fff; }

.copyright {
    text-align: center;
    margin-top: 60px;
    font-size: 0.72rem;
    opacity: 0.3;
    letter-spacing: 0.1em;
}

/* ─── MOBILE ─── */
@media (max-width: 600px) {
    .site-nav { padding: 16px 20px; }
    .hero h1 { font-size: 4.5rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; }
    .specs-bar { border: none; gap: 0; }
    .spec-item { min-width: 50%; border: 1px solid var(--border); }
    .spec-divider { display: none; }
    .concept-intro h2 { font-size: 2rem; }
    .features-grid { gap: 10px; }
    .audience-grid { gap: 10px; }
    .destination-content h2 { font-size: 1.8rem; }
}