/* ============================================
   VAPOR WORLD — Classic & Elegant
   Forest Green + Off-White Palette
   ============================================ */

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

:root {
    --green-deep: #1a3c2a;
    --green-mid: #2d5a3f;
    --green-light: #3d7a56;
    --green-pale: #e8f0eb;
    --cream: #f5f2eb;
    --cream-light: #faf8f4;
    --warm: #d4c5a9;
    --warm-light: #e8dcc8;
    --text-dark: #1a1a18;
    --text-mid: #4a4a44;
    --text-light: #7a7a72;
    --white: #ffffff;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--green-deep);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--cream);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 520px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.btn--primary {
    background: var(--green-deep);
    color: var(--cream);
    border-color: var(--green-deep);
}

.btn--primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 60, 42, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245, 242, 235, 0.4);
}

.btn--ghost:hover {
    border-color: var(--cream);
    background: rgba(245, 242, 235, 0.1);
}

.btn--light {
    background: var(--cream);
    color: var(--green-deep);
    border-color: var(--cream);
}

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

.btn--outline-light {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245, 242, 235, 0.5);
}

.btn--outline-light:hover {
    border-color: var(--cream);
    background: rgba(245, 242, 235, 0.1);
}

.btn--full {
    width: 100%;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(26, 60, 42, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: padding 0.5s var(--ease-out);
}

.nav.scrolled .nav__inner {
    padding: 14px 0;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__brand-mark {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.05em;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 197, 169, 0.4);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__brand-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.7);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--warm);
    transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
    color: var(--cream);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 8px 20px;
    border: 1px solid rgba(212, 197, 169, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    border-color: var(--warm);
    background: rgba(212, 197, 169, 0.1);
}

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

.nav__toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(61, 122, 86, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 197, 169, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__content {
    max-width: 540px;
}

.hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--warm);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 28px;
}

.hero__headline-line {
    display: block;
}

.hero__headline-accent {
    font-style: italic;
    color: var(--warm);
    font-weight: 400;
}

.hero__subheadline {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.65);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 440px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(245, 242, 235, 0.5);
    font-weight: 300;
}

.hero__meta-item svg {
    opacity: 0.6;
    flex-shrink: 0;
}

/* Hero image column */
.hero__image-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.hero__image-main {
    width: 85%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero__image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero__image-accent {
    width: 60%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--green-deep);
}

.hero__image-accent img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hero__stamp {
    position: absolute;
    bottom: -20px;
    left: -10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--warm);
    color: var(--green-deep);
    padding: 10px 16px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Hero scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.4);
    z-index: 1;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* --- About --- */
.about {
    background: var(--green-deep);
    padding: 120px 0 0;
    position: relative;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 80px;
}

.about__left {
    position: sticky;
    top: 120px;
}

.about__lead {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--cream);
    margin-bottom: 24px;
    font-style: italic;
}

.about__body {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.6);
    line-height: 1.8;
    margin-bottom: 48px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
}

.value-card__number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--warm);
    padding-top: 2px;
}

.value-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 6px;
}

.value-card__text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.5);
    line-height: 1.7;
}

.about__image-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.about__image-strip img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.4s ease;
}

.about__image-strip img:hover {
    opacity: 1;
}

/* --- Products --- */
.products {
    background: var(--cream-light);
    padding: 120px 0;
}

.products__header {
    text-align: center;
    margin-bottom: 72px;
}

.products__header .section-subtitle {
    margin: 0 auto;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 72px;
}

.product-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(26, 60, 42, 0.12);
}

.product-card__img {
    overflow: hidden;
    height: 240px;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--green-deep);
    padding: 20px 24px 8px;
}

.product-card__desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    padding: 0 24px 24px;
}

.products__cta {
    text-align: center;
    padding: 40px;
    background: var(--green-pale);
    border-radius: 4px;
}

.products__cta p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--green-deep);
    margin-bottom: 12px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-mid);
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 14px;
}

/* --- Visit --- */
.visit {
    background: var(--cream);
    padding: 120px 0;
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit__address {
    font-style: normal;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit__address-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visit__address-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.visit__address-block span,
.visit__address-block a {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--green-deep);
    font-weight: 500;
}

.visit__address-block a:hover {
    color: var(--green-light);
}

.visit__hours {
    border-top: 1px solid var(--warm-light);
    padding-top: 32px;
}

.visit__hours-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
}

.visit__hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-mid);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.visit__hours-row--closed span:last-child {
    color: var(--text-light);
    font-style: italic;
}

.visit__map {
    height: 480px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--green-deep);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 70% 50%, rgba(61, 122, 86, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-banner__eyebrow {
    color: var(--warm);
}

.cta-banner__headline {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--cream);
    margin-top: 8px;
}

.cta-banner__accent {
    font-style: italic;
    color: var(--warm);
}

.cta-banner__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
    background: var(--cream-light);
    padding: 120px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__body {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact__direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__direct-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--green-deep);
    transition: color 0.3s ease;
}

.contact__direct-item:hover {
    color: var(--green-light);
}

.contact__direct-item svg {
    color: var(--green-mid);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.contact-form__group {
    margin-bottom: 24px;
}

.contact-form__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream-light);
    border: 1px solid var(--warm-light);
    border-radius: 2px;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    border-color: var(--green-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 90, 63, 0.1);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--green-pale);
    border-radius: 2px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--green-deep);
}

.contact-form__success svg {
    color: var(--green-mid);
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    background: #111;
    padding: 72px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__brand-mark--light {
    border-color: rgba(212, 197, 169, 0.3);
}

.footer__tagline {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: rgba(245, 242, 235, 0.5);
    line-height: 1.7;
    margin-top: 12px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.5);
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--warm);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__contact p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.4);
}

.footer__contact a {
    transition: color 0.3s ease;
}

.footer__contact a:hover {
    color: var(--warm);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
}

.footer__bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.3);
}

.footer__age-notice {
    font-style: italic;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }
    
    .about__grid {
        gap: 48px;
    }
    
    .about__left {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-deep);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: right 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav__links.open {
        right: 0;
    }
    
    .nav__link {
        font-size: 0.85rem;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        padding-top: 120px;
    }
    
    .hero__image-col {
        display: none;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        text-align: center;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__image-strip {
        grid-template-columns: 1fr;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .visit__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .visit__map {
        height: 300px;
    }
    
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form {
        padding: 28px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__grid {
        padding: 100px 16px 60px;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
}
