/* ========================================
   SABLE WISE — Cannabis Industry Intelligence
   Color Palette: Charcoal base, Sage Green accent, Copper secondary
   ======================================== */

:root {
    --sage: #6B7F3B;
    --sage-soft: #8A9B5E;
    --sage-muted: rgba(107, 127, 59, 0.15);
    --copper: #B87333;
    --copper-light: #D4A574;
    --copper-muted: rgba(184, 115, 51, 0.15);
    --deep-purple: #4A3B6B;
    --teal: #2B7080;
    --burgundy: #8B3A3A;
    --charcoal: #2C2C2C;
    --charcoal-light: #3D3D3D;
    --charcoal-dark: #1A1A1A;
    --charcoal-deep: #111111;
    --cream: #FAF8F5;
    --cream-soft: #E8E4DF;
    --slate: #8A8A8A;
    --slate-light: #A0A0A0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background: var(--charcoal-dark);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ========================================
   ACCENT STRIPE
   ======================================== */

.accent-stripe {
    position: fixed;
    right: 0;
    top: 0;
    width: 5px;
    height: 100vh;
    background: linear-gradient(180deg, var(--sage) 0%, var(--copper) 50%, var(--charcoal-dark) 100%);
    z-index: 1000;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 5px;
    z-index: 900;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(107, 127, 59, 0.1);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.logo-divider {
    color: var(--sage);
    font-weight: 300;
    opacity: 0.5;
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--slate-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--cream-soft);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--sage-soft);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0 2rem 1.5rem;
    gap: 1rem;
}

.nav-mobile a {
    color: var(--cream-soft);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
}

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

/* ========================================
   HERO
   ======================================== */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 72px 0 0;
    background: var(--charcoal-dark);
    position: relative;
    overflow: hidden;
}

.hero-text {
    padding: 4rem 2rem 4rem 4rem;
    max-width: 600px;
    margin-left: auto;
    animation: fadeInUp 1s ease-out;
}

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

.hero-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--copper-light);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--slate-light);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--copper);
    letter-spacing: 0.04em;
}

/* Hero Media */
.hero-media {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(to right, var(--charcoal-dark), transparent);
    z-index: 3;
    pointer-events: none;
}

.hero-media-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 4/5;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}

.hero-media-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    z-index: 1;
}

.hero-media-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

.hero-media-container.playing video {
    opacity: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(107, 127, 59, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.play-btn svg {
    margin-left: 3px;
}

.hero-media-container:hover .play-btn {
    background: rgba(107, 127, 59, 1);
    transform: translate(-50%, -50%) scale(1.08);
}

.hero-media-container.playing .play-btn {
    display: none;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--sage);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--sage-soft);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--copper);
    color: var(--copper-light);
    transform: translateY(-2px);
}

/* ========================================
   SECTIONS COMMON
   ======================================== */

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

.section-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: var(--cream);
}

/* ========================================
   ABOUT
   ======================================== */

.about {
    background: var(--charcoal);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-card {
    padding: 2rem;
    background: var(--charcoal-dark);
    border-radius: 6px;
    border: 1px solid rgba(107, 127, 59, 0.08);
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-3px);
    border-color: rgba(107, 127, 59, 0.2);
}

.about-icon {
    color: var(--sage);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.about-card p {
    font-size: 0.88rem;
    color: var(--slate-light);
    line-height: 1.7;
}

/* ========================================
   STATE OF AFFAIRS
   ======================================== */

.state-of-affairs {
    background: var(--charcoal-dark);
}

.soa-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
}

.soa-text p {
    font-size: 0.92rem;
    color: var(--slate-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.soa-text p:last-child {
    margin-bottom: 0;
}

.soa-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.soa-stat {
    padding: 1.25rem 1.5rem;
    background: var(--charcoal);
    border-radius: 6px;
    border-left: 3px solid var(--sage);
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--copper);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--slate-light);
    letter-spacing: 0.02em;
}

.soa-callout {
    padding: 1.5rem;
    background: var(--sage-muted);
    border-radius: 6px;
    border: 1px solid rgba(107, 127, 59, 0.15);
}

.soa-callout p {
    font-size: 0.85rem;
    color: var(--cream-soft);
    font-style: italic;
    line-height: 1.7;
}

/* ========================================
   LICENSURE LINKS
   ======================================== */

.licensure {
    background: var(--charcoal);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.link-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--charcoal-dark);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: var(--sage);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.link-icon {
    color: var(--sage);
    margin-bottom: 1rem;
}

.link-card:hover .link-icon {
    color: var(--sage-soft);
}

.link-card h3 {
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.link-card p {
    font-size: 0.82rem;
    color: var(--slate-light);
    line-height: 1.6;
    flex: 1;
}

.link-url {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--copper);
    letter-spacing: 0.02em;
}

/* ========================================
   BOUNDARIES
   ======================================== */

.boundaries {
    background: linear-gradient(135deg, var(--deep-purple), #352A4F);
}

.boundaries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.boundary-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid;
}

.boundary-does {
    color: var(--sage-soft);
    border-color: var(--sage) !important;
}

.boundary-doesnt {
    color: var(--copper-light);
    border-color: var(--copper) !important;
}

.boundary-col ul {
    list-style: none;
}

.boundary-col ul li {
    padding: 0.6rem 0;
    font-size: 0.88rem;
    color: var(--cream-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 1.25rem;
    position: relative;
}

.boundary-col ul li::before {
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.boundary-does + ul li::before {
    content: '\2713';
    color: var(--sage);
}

.boundary-doesnt + ul li::before {
    content: '\2715';
    color: var(--copper);
}

/* ========================================
   CONNECT FORM
   ======================================== */

.connect {
    background: var(--charcoal);
}

.connect-description {
    font-size: 0.95rem;
    color: var(--slate-light);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.connect-form {
    max-width: 680px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cream-soft);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--charcoal-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate);
}

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

/* Reason Chips */
.reason-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.chip {
    padding: 0.5rem 1rem;
    background: var(--charcoal-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--cream-soft);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
}

.chip:hover {
    border-color: var(--sage);
    color: var(--cream);
}

.chip.selected {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--cream);
}

.btn-submit {
    margin-top: 0.5rem;
    padding: 0.9rem 2.5rem;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.85rem;
    min-height: 1.5rem;
}

.form-status.success {
    color: var(--sage-soft);
}

.form-status.error {
    color: var(--copper);
}

/* ========================================
   CONTACT
   ======================================== */

.contact {
    background: var(--charcoal-dark);
}

.contact-description {
    font-size: 1rem;
    color: var(--slate-light);
    max-width: 600px;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
}

.contact-card {
    padding: 2.5rem;
    background: var(--charcoal);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-icon {
    color: var(--sage);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.contact-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--copper);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.contact-value:hover {
    color: var(--copper-light);
}

.contact-note {
    font-size: 0.75rem;
    color: var(--slate);
    margin-top: 0.75rem;
}

.btn-web-call {
    font-size: 0.95rem;
    padding: 1rem 2rem;
}

/* ========================================
   CALL OVERLAY
   ======================================== */

.call-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.call-overlay.active {
    display: flex;
}

.call-modal {
    text-align: center;
    padding: 3rem;
}

.call-avatar {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
}

.call-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--sage);
}

.call-pulse {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 2px solid var(--sage);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.call-status {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
}

.call-timer {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--sage);
    margin-bottom: 2rem;
    font-variant-numeric: tabular-nums;
}

.btn-end-call {
    background: var(--burgundy);
    color: var(--cream);
    padding: 0.8rem 2rem;
    border-radius: 50px;
}

.btn-end-call:hover {
    background: #A04040;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--charcoal-deep);
    border-top: 1px solid rgba(107, 127, 59, 0.1);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream);
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--copper);
    margin-top: 0.5rem;
}

.footer-meta p {
    font-size: 0.8rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-meta a {
    color: var(--sage-soft);
    text-decoration: none;
}

.footer-meta a:hover {
    color: var(--sage);
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    font-size: 0.75rem;
    color: var(--slate);
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-media {
        order: 1;
        height: 55vh;
        min-height: 420px;
    }

    .hero-text {
        order: 2;
        padding: 2rem;
        max-width: 100%;
        margin-left: 0;
    }

    .hero-media::before {
        display: none;
    }

    .hero-media-container {
        max-width: 100%;
        border-radius: 0;
    }

    .soa-content {
        grid-template-columns: 1fr;
    }

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

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .section-inner {
        padding: 4rem 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
