/* --- CSS VARIABLES & RESET --- */
:root {
    --bg-color: #FAFAFA;
    --text-main: #111111;
    --text-muted: #555555;
    --accent: #3A5A40; /* Nordic Pine */
    --accent-hover: #29422d;
    --border-color: #E5E5E5;
    --white: #FFFFFF;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --radius: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding { padding: var(--spacing-lg) 0; }

.text-center { text-align: center; }

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--text-main);
    color: var(--white);
}

/* --- ANIMATIONS --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-weight: 700; font-size: 1.2rem; letter-spacing: -0.03em; }
.logo span { color: var(--accent); }

.nav-links { display: none; gap: 2rem; font-size: 0.95rem; font-weight: 500; }
@media(min-width: 768px) { .nav-links { display: flex; } }

.nav-cta { font-size: 0.9rem; padding: 10px 20px; }

/* --- HERO --- */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-content h1 span { color: var(--accent); }

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

@media(min-width: 768px) {
    .hero-content h1 { font-size: 4.5rem; }
}

/* --- LOGO STRIP --- */
.social-proof {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.logo-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.5;
    filter: grayscale(100%);
}

.logo-item { font-weight: 700; font-size: 1.2rem; color: #888; text-transform: uppercase; }

/* --- ABOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media(min-width: 768px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-img {
    background-color: #eee;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.about-img img { width: 100%; height: 100%; object-fit: cover; }

.tag-row {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- PORTFOLIO --- */
.section-header { margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.section-header p { color: var(--text-muted); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media(min-width: 768px) {
    .portfolio-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.portfolio-item {
    position: relative;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    group: hover;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.portfolio-item:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.5);
}

.play-icon::after {
    content: '';
    display: block;
    width: 0; 
    height: 0; 
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid white;
    margin-left: 4px;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.portfolio-cat { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; }
.portfolio-title { font-weight: 600; font-size: 1rem; }

/* --- VALUE PROPS --- */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.benefit-icon { font-size: 1.5rem; margin-bottom: 1rem; color: var(--accent); }
.benefit-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.95rem; color: var(--text-muted); }

/* --- PACKAGES --- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media(min-width: 900px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.price-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--accent);
    background: #fdfdfd;
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.price-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.price-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }

.price-list { margin-bottom: 2rem; flex-grow: 1; }
.price-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.price-list li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

/* --- PROCESS --- */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    counter-reset: step;
}

@media(min-width: 768px) {
    .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.step { position: relative; }
.step h4 { margin-bottom: 0.5rem; margin-top: 1rem; font-size: 1.2rem; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

.step::before {
    counter-increment: step;
    content: "0" counter(step);
    font-size: 3rem;
    font-weight: 800;
    color: #f0f0f0;
    display: block;
    line-height: 1;
}

/* --- CONTACT --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media(min-width: 768px) {
    .contact-layout { grid-template-columns: 1fr 1fr; }
}

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; }
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    background: var(--white);
}

.form-textarea { height: 120px; resize: vertical; }

.contact-info a {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

/* --- MODAL (LIGHTBOX) --- */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active { display: flex; }

.modal-content {
    background: var(--white);
    max-width: 400px;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.modal-video-placeholder {
    aspect-ratio: 9/16;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.modal-text { padding: 1.5rem; }
.modal-text h3 { margin-bottom: 0.5rem; }
.modal-stats { display: flex; gap: 1rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #eee; }
.stat div:first-child { font-weight: 700; color: var(--accent); }
.stat div:last-child { font-size: 0.8rem; color: #777; }

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}