/* ============================================
   LOLI MASS EDITING
   Same design system as lolimass.com.ar
   ============================================ */

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

:root {
    --black: #2c2420;
    --dark: #4a3f37;
    --grey: #8a7e74;
    --light: #d6cfc7;
    --faint: #ede8e2;
    --cream: #f5f1ec;
    --white: #fdfcfa;
    --bg: #faf8f5;
    --serif: 'EB Garamond', 'Georgia', serif;
    --mono: 'Inconsolata', 'Courier New', monospace;
    --margin: clamp(20px, 5vw, 80px);
    --narrow: min(640px, 90vw);
    --wide: min(1200px, 92vw);
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--serif); color: var(--black); background: var(--bg); line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
::selection { background: var(--black); color: var(--cream); }


/* ---- HEADER ---- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px var(--margin);
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.logo {
    font-family: var(--mono); font-size: 11px; font-weight: 400;
    letter-spacing: 4px; text-transform: uppercase; white-space: nowrap;
}
.site-tagline {
    font-family: var(--serif); font-size: 13px; font-style: italic;
    color: var(--grey); font-weight: 400; margin-left: 12px; margin-right: auto;
}
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a {
    font-family: var(--serif); font-size: 15px; font-weight: 400;
    color: var(--grey); transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.site-nav a:hover { color: var(--black); }
.site-nav a.active {
    color: var(--black); text-decoration: underline;
    text-underline-offset: 4px; text-decoration-thickness: 1px;
}
.menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 24px; height: 18px; position: relative; z-index: 200;
}
.menu-toggle span { display: block; width: 100%; height: 1px; background: var(--black); transition: 0.25s; }
.menu-toggle span:first-child { margin-bottom: 8px; }
.nav-open .menu-toggle span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.nav-open .menu-toggle span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

@media (max-width: 768px) {
    .menu-toggle { display: flex; flex-direction: column; justify-content: center; }
    .site-nav {
        position: fixed; top: 0; right: -100%; width: 70vw; max-width: 280px;
        height: 100vh; background: var(--bg); flex-direction: column;
        padding: 80px 32px; gap: 16px; transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.05);
    }
    .site-nav a { font-size: 16px; }
    .site-tagline { display: none; }
    .nav-open .site-nav { right: 0; }
}


/* ---- FOOTER ---- */
.site-footer { padding: 32px var(--margin); border-top: 1px solid var(--light); margin-top: 40px; }
.footer-inner {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 11px; color: var(--grey); letter-spacing: 0.5px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--grey); transition: color 0.2s; }
.footer-links a:hover { color: var(--black); }


/* ---- SLIDER ---- */
.slider {
    position: relative; width: 100%; margin-top: 60px;
    overflow: hidden; line-height: 0;
}
.slider-track { position: relative; }
.slider-slide {
    position: absolute; top: 0; left: 0; width: 100%;
    opacity: 0; transition: opacity 1s ease;
}
.slider-slide:first-child { position: relative; }
.slider-slide.active { opacity: 1; z-index: 1; }
.slider-slide img { width: 100%; height: auto; max-height: 75vh; object-fit: cover; }
.slider-dots {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 2;
}
.slider-dot {
    width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--white);
    background: transparent; cursor: pointer; transition: background 0.3s; padding: 0;
}
.slider-dot.active { background: var(--white); }

/* ---- PAGE IMAGE ---- */
.page-image {
    margin-top: 60px; line-height: 0;
}
.page-image img { width: 100%; max-height: 50vh; object-fit: cover; }


/* ---- HERO FULL — full viewport image ---- */
.hero-full {
    min-height: 100vh; width: 100%;
    background: var(--dark) center center / cover no-repeat;
    position: relative;
}
.hero-overlay {
    min-height: 100vh; width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 var(--margin) 80px;
}
.hero-inner { max-width: 640px; }
.hero-label {
    font-family: var(--mono); font-size: 11px; font-weight: 300;
    letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}
.hero-full h1 {
    font-family: var(--serif); font-size: clamp(32px, 5vw, 52px);
    font-weight: 400; line-height: 1.2; color: #fff; margin-bottom: 20px;
}
.hero-full h1 em { font-style: italic; }
.hero-sub {
    font-family: var(--serif); font-size: 18px; line-height: 1.7;
    color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-white {
    border-color: #fff !important; color: #fff !important;
}
.btn-white:hover { background: #fff !important; color: var(--black) !important; }
.btn-ghost {
    font-family: var(--serif); font-size: 15px; color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px;
    transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }
.hero-scroll-hint {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    animation: scrollHint 2s ease infinite;
}
@keyframes scrollHint {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.7; transform: translateX(-50%) translateY(6px); }
}

/* ---- CREDENTIAL STRIP ---- */
.credential-strip { padding: 48px var(--margin); border-bottom: 1px solid var(--faint); }
.credential-inner {
    max-width: var(--wide); margin: 0 auto;
    display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap;
}
.cred-item { text-align: center; }
.cred-num { font-family: var(--serif); font-size: 36px; font-weight: 400; display: block; line-height: 1.1; }
.cred-label { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); }
.cred-divider { width: 1px; height: 40px; background: var(--light); }
@media (max-width: 600px) { .cred-divider { display: none; } .credential-inner { gap: 24px; } .cred-item { flex: 1 0 40%; } }

/* ---- GALLERY STRIP — horizontal scroll ---- */
.gallery-strip { padding: 48px 0; overflow: hidden; }
.gallery-scroll {
    display: flex; gap: 16px; padding: 0 var(--margin);
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
    flex: 0 0 auto; width: 320px; scroll-snap-align: start;
    overflow: hidden; line-height: 0;
}
.gallery-item img {
    width: 100%; height: 220px; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.gallery-item:hover img { transform: scale(1.03); }
@media (max-width: 600px) { .gallery-item { width: 260px; } .gallery-item img { height: 180px; } }

/* ---- SECTION SHARED ---- */
.section-header { margin-bottom: 40px; }
.section-label {
    font-family: var(--mono); font-size: 11px; font-weight: 300;
    letter-spacing: 2px; text-transform: uppercase; color: var(--grey);
    display: block; margin-bottom: 8px;
}
.section-header h2 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 400; }

/* ---- INTRO ---- */
.intro-section { padding: 80px var(--margin); border-bottom: 1px solid var(--faint); }
.intro-inner { max-width: var(--narrow); margin: 0 auto; }
.intro-lead { font-family: var(--serif); font-size: clamp(22px, 3vw, 28px); font-weight: 400; line-height: 1.5; margin-bottom: 16px; }
.intro-body { font-size: 17px; line-height: 1.8; color: var(--dark); margin-bottom: 24px; }

/* ---- SERVICES (index) ---- */
.services-section { padding: 80px var(--margin); }
.services-inner { max-width: var(--wide); margin: 0 auto; }

/* ---- BA PREVIEW (index) ---- */
.ba-preview { padding: 80px var(--margin); background: var(--white); }
.ba-preview-inner { max-width: var(--wide); margin: 0 auto; }
.ba-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 700px) { .ba-preview-grid { grid-template-columns: 1fr; } }

/* ---- SPLIT SECTION — image + text side by side ---- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.split-image { background: var(--faint) center center / cover no-repeat; min-height: 400px; }
.split-text {
    display: flex; flex-direction: column; justify-content: center;
    padding: 64px var(--margin); max-width: 480px;
}
.split-text h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 36px); font-weight: 400; margin-bottom: 16px; margin-top: 8px; }
.split-text p { font-size: 17px; line-height: 1.8; color: var(--dark); margin-bottom: 24px; }
.split-text a:not(.btn-secondary) { color: var(--grey); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 768px) { .split-section { grid-template-columns: 1fr; } .split-image { min-height: 300px; } }

/* ---- PROCESS PREVIEW (index) ---- */
.process-preview { padding: 80px var(--margin); background: var(--white); }
.process-preview-inner { max-width: var(--wide); margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-card { padding-top: 20px; border-top: 1px solid var(--faint); }
.process-num { font-family: var(--serif); font-size: 28px; color: var(--light); display: block; margin-bottom: 8px; }
.process-card h3 { font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 8px; }
.process-card p { font-size: 14px; line-height: 1.7; color: var(--grey); }
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* ---- TESTIMONIALS (index) ---- */
.testimonials-section { padding: 80px var(--margin); }
.testimonials-inner { max-width: var(--wide); margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.testimonial-card { padding: 32px; border: 1px solid var(--faint); background: var(--white); }
.testimonial-text {
    font-family: var(--serif); font-size: 17px; font-style: italic;
    line-height: 1.7; color: var(--dark); margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { font-family: var(--mono); font-size: 12px; letter-spacing: 0.5px; display: block; }
.testimonial-author span { font-family: var(--mono); font-size: 11px; color: var(--grey); }
@media (max-width: 700px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---- INSTAGRAM ---- */
.instagram-section { padding: 48px var(--margin); text-align: center; border-top: 1px solid var(--faint); }
.instagram-link { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
.instagram-handle { font-family: var(--serif); font-size: 24px; font-style: italic; color: var(--dark); transition: color 0.2s; }
.instagram-link:hover .instagram-handle { color: var(--black); }

/* ---- CTA FULL ---- */
.cta-full {
    padding: 100px var(--margin); text-align: center;
    background: var(--black); color: var(--cream);
}
.cta-inner { max-width: var(--narrow); margin: 0 auto; }
.cta-full h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 400; font-style: italic; margin-bottom: 12px; }
.cta-full p { font-family: var(--mono); font-size: 13px; letter-spacing: 1px; color: var(--grey); margin-bottom: 36px; }


/* ---- HOME — editing index ---- */
.editing-home { padding: 0; }

/* Hero */
.home-hero {
    padding: 80px var(--margin) 60px;
    max-width: var(--narrow); margin: 0 auto;
}
.home-hero h1 {
    font-family: var(--serif); font-size: clamp(28px, 4vw, 40px);
    font-weight: 400; line-height: 1.3; margin-bottom: 12px;
}
.home-tagline { font-family: var(--serif); font-size: 18px; color: var(--grey); margin-bottom: 28px; }
.home-hero-links { display: flex; gap: 24px; align-items: center; }

/* Shared link styles */
.btn-outline {
    font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    padding: 12px 28px; border: 1.5px solid var(--black); color: var(--black);
    text-decoration: none; transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.link-arrow {
    font-family: var(--serif); font-size: 15px; color: var(--grey);
    text-decoration: none; transition: color 0.2s;
}
.link-arrow:hover { color: var(--black); }

/* Split sections — image + text alternating */
.home-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border-top: 1px solid var(--light); min-height: 500px;
}
.home-split.reverse .home-split-img { order: 2; }
.home-split.reverse .home-split-text { order: 1; }
.home-split-img { overflow: hidden; }
.home-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-split-text {
    padding: 60px 56px; display: flex; flex-direction: column; justify-content: center;
}
.home-split-text h2 {
    font-family: var(--serif); font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 400; margin-bottom: 20px; line-height: 1.4;
}
.home-split-text p {
    font-size: 16px; line-height: 1.8; color: var(--dark); margin-bottom: 14px;
}
.home-split-text a { color: var(--grey); text-decoration: underline; text-underline-offset: 3px; }
.home-split-text em { color: var(--grey); }
.home-split-text.full { grid-column: 1 / -1; max-width: var(--narrow); margin: 0 auto; padding: 60px var(--margin); }
@media (max-width: 768px) {
    .home-split { grid-template-columns: 1fr; }
    .home-split.reverse .home-split-img { order: 0; }
    .home-split.reverse .home-split-text { order: 0; }
    .home-split-img { max-height: 50vh; }
    .home-split-text { padding: 40px var(--margin); }
}

/* Lists inside splits */
.home-list { list-style: none; padding: 0; margin: 0; }
.home-list li {
    font-size: 15px; line-height: 1.7; color: var(--dark);
    padding: 10px 0 10px 20px; border-bottom: 1px solid var(--faint); position: relative;
}
.home-list li::before { content: '—'; position: absolute; left: 0; color: var(--light); }

/* Centered blocks */
.home-block {
    border-top: 1px solid var(--light); padding: 56px var(--margin);
    max-width: var(--narrow); margin: 0 auto;
}
.home-block h2 {
    font-family: var(--serif); font-size: clamp(22px, 3vw, 28px);
    font-weight: 400; margin-bottom: 20px;
}
.home-block p { font-size: 16px; line-height: 1.8; color: var(--dark); margin-bottom: 14px; }

/* Services/pricing */
.home-service {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 14px 0; border-bottom: 1px solid var(--faint);
}
.home-service-name { font-size: 17px; }
.home-service-price { font-family: var(--mono); font-size: 12px; color: var(--grey); letter-spacing: 0.5px; }
.home-pricing-links { display: flex; gap: 24px; margin-top: 20px; }

/* Process steps */
.home-steps { margin-top: 24px; }
.home-step {
    display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--faint);
}
.home-step-num {
    font-family: var(--serif); font-size: 28px; color: var(--light);
    flex-shrink: 0; width: 40px;
}
.home-step div { flex: 1; min-width: 0; }
.home-step h3 { font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 8px; }
.home-step p { font-size: 15px; line-height: 1.7; color: var(--dark); margin: 0; }

/* Testimonials */
.home-testimonial { margin-bottom: 32px; }
.home-testimonial blockquote {
    font-family: var(--serif); font-size: 18px; font-style: italic;
    line-height: 1.7; color: var(--dark); margin-bottom: 8px;
}
.home-testimonial cite {
    font-family: var(--mono); font-size: 11px; font-style: normal;
    letter-spacing: 0.5px; color: var(--grey);
}

/* Final CTA */
.home-cta-final {
    border-top: 1px solid var(--light); padding: 80px var(--margin);
    max-width: var(--narrow); margin: 0 auto; text-align: center;
}
.home-cta-final h2 {
    font-family: var(--serif); font-size: clamp(28px, 4vw, 38px);
    font-weight: 400; font-style: italic; margin-bottom: 20px;
}
.home-cta-final p { font-size: 16px; line-height: 1.8; color: var(--dark); margin-bottom: 28px; }
.home-cta-final a:not(.btn-outline) { color: var(--grey); text-decoration: underline; text-underline-offset: 3px; }
.home-cta-links { display: flex; gap: 24px; justify-content: center; align-items: center; }
@media (max-width: 500px) { .home-cta-links { flex-direction: column; } }
.hero-sub {
    font-family: var(--serif); font-size: 17px; line-height: 1.8;
    color: var(--dark); margin-bottom: 40px; max-width: 480px;
}
.hero-credential {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 48px;
}
.hero-credential span:first-child { width: 32px; height: 1px; background: var(--light); display: block; }
.hero-credential span:last-child {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey);
}
.hero-ctas { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-image {
    max-width: var(--narrow); margin: 0 auto; padding: 0 var(--margin);
}
.hero-image img { width: 100%; }

/* Buttons */
.btn-primary {
    font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    padding: 12px 28px; border: 1.5px solid var(--black); color: var(--black);
    background: none; transition: all 0.25s; display: inline-block; cursor: pointer;
}
.btn-primary:hover { background: var(--black); color: var(--white); }
.btn-secondary {
    font-family: var(--serif); font-size: 15px; color: var(--grey);
    border-bottom: 1px solid var(--light); padding-bottom: 2px; transition: color 0.2s;
}
.btn-secondary:hover { color: var(--black); }


/* ---- SERVICES OVERVIEW (index) ---- */
.services-brief {
    padding: 80px var(--margin);
    max-width: var(--wide); margin: 0 auto;
    border-top: 1px solid var(--light);
}
.services-brief h2 {
    font-family: var(--serif); font-size: clamp(24px, 3vw, 32px);
    font-weight: 400; margin-bottom: 48px;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.service-card { padding-top: 24px; border-top: 1px solid var(--faint); }
.service-card h3 {
    font-family: var(--mono); font-size: 11px; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.service-price {
    font-family: var(--serif); font-size: 32px; font-weight: 400; margin-bottom: 4px;
}
.service-price span { font-size: 14px; color: var(--grey); font-style: italic; }
.service-card p { font-size: 15px; line-height: 1.7; color: var(--dark); margin-top: 12px; }

@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }


/* ---- ABOUT ---- */
.about-page { padding: 120px var(--margin) 80px; }
.about-content {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: start;
}
.about-portrait { width: 100%; }
.about-portrait img { width: 100%; }
.about-portrait-placeholder {
    width: 100%; aspect-ratio: 3/4; background: var(--faint);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 11px; color: var(--grey); letter-spacing: 1px; text-transform: uppercase;
}
.about-text { font-size: 18px; line-height: 1.8; color: var(--dark); }
.about-text p { margin-bottom: 20px; }
.about-text a { color: var(--grey); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.about-text a:hover { color: var(--black); }
.about-contact {
    display: flex; flex-direction: column; gap: 8px; margin-top: 32px;
    font-family: var(--mono); font-size: 13px; letter-spacing: 0.5px;
}
.about-contact a { color: var(--grey); transition: color 0.2s; }
.about-contact a:hover { color: var(--black); }

@media (max-width: 700px) {
    .about-content { grid-template-columns: 1fr; gap: 32px; }
    .about-portrait, .about-portrait-placeholder { max-width: 300px; }
}


/* ---- PRICING + CALCULATOR ---- */
.pricing-page { padding: 120px var(--margin) 80px; }
.pricing-content { max-width: var(--narrow); margin: 0 auto; }
.pricing-content h1 {
    font-family: var(--serif); font-size: clamp(28px, 4vw, 40px);
    font-weight: 400; margin-bottom: 12px;
}
.pricing-intro { font-size: 17px; color: var(--dark); line-height: 1.7; margin-bottom: 48px; }

.pricing-table { margin-bottom: 48px; }
.pricing-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 20px 0; border-bottom: 1px solid var(--faint);
}
.pricing-service { font-size: 17px; }
.pricing-cost { font-family: var(--mono); font-size: 14px; letter-spacing: 0.5px; }
.pricing-note { font-family: var(--mono); font-size: 12px; color: var(--grey); margin-top: 16px; }

/* Calculator */
.calculator {
    background: var(--white); padding: 40px; border: 1px solid var(--faint); margin-top: 48px;
}
.calculator h2 {
    font-family: var(--mono); font-size: 12px; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 32px;
}
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.calc-field label {
    display: block; font-family: var(--mono); font-size: 11px;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 8px;
}
.calc-field input, .calc-field select {
    width: 100%; padding: 12px 16px; border: 1px solid var(--light);
    background: var(--bg); font-family: var(--mono); font-size: 14px;
    color: var(--black); outline: none; transition: border-color 0.2s;
}
.calc-field input:focus, .calc-field select:focus { border-color: var(--grey); }
.calc-checkboxes { margin-bottom: 24px; }
.calc-check {
    display: flex; align-items: center; gap: 10px; padding: 8px 0;
    font-family: var(--serif); font-size: 16px; cursor: pointer;
}
.calc-check input { width: 16px; height: 16px; accent-color: var(--black); }
.calc-check .check-price { font-family: var(--mono); font-size: 12px; color: var(--grey); margin-left: auto; }
.calc-result {
    border-top: 1px solid var(--light); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: baseline;
}
.calc-total-label { font-family: var(--mono); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); }
.calc-total { font-family: var(--serif); font-size: 36px; font-weight: 400; }

@media (max-width: 600px) { .calc-row { grid-template-columns: 1fr; } }


/* ---- PROCESS / HOW IT WORKS ---- */
.process-page { padding: 120px var(--margin) 80px; }
.process-content { max-width: var(--narrow); margin: 0 auto; }
.process-content h1 {
    font-family: var(--serif); font-size: clamp(28px, 4vw, 40px);
    font-weight: 400; margin-bottom: 48px;
}
.process-steps { margin-bottom: 64px; }
.step {
    padding: 32px 0; border-bottom: 1px solid var(--faint);
    display: grid; grid-template-columns: 48px 1fr; gap: 20px;
}
.step-num {
    font-family: var(--serif); font-size: 32px; font-weight: 400; color: var(--light);
}
.step-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 8px; }
.step-body p { font-size: 16px; line-height: 1.7; color: var(--dark); }

/* Tutorial visual */
.tutorial-section h2 {
    font-family: var(--serif); font-size: clamp(24px, 3vw, 32px);
    font-weight: 400; margin-bottom: 12px;
}
.tutorial-step { margin-bottom: 56px; }
.tutorial-step-header {
    display: flex; align-items: baseline; gap: 16px; margin-bottom: 12px;
}
.tutorial-step-num {
    font-family: var(--serif); font-size: 28px; color: var(--light); line-height: 1;
}
.tutorial-step-header h3 {
    font-family: var(--serif); font-size: 20px; font-weight: 400;
}
.tutorial-step p { font-size: 16px; line-height: 1.7; color: var(--dark); }
.tutorial-step code {
    background: var(--faint); padding: 2px 8px; font-family: var(--mono); font-size: 14px;
}
.tutorial-img {
    margin-top: 20px; border: 1px solid var(--faint); overflow: hidden;
    line-height: 0;
}
.tutorial-img img { width: 100%; height: auto; }
.tutorial-note {
    padding: 24px; border: 1px solid var(--faint); background: var(--white);
    margin-top: 48px;
}
.tutorial-note p { font-size: 16px; line-height: 1.7; color: var(--dark); }


/* ---- SAMPLES / BEFORE-AFTER ---- */
.samples-page { padding: 120px var(--margin) 80px; }
.samples-content { max-width: var(--wide); margin: 0 auto; }
.samples-content h1 {
    font-family: var(--serif); font-size: clamp(28px, 4vw, 40px);
    font-weight: 400; margin-bottom: 12px;
}
.samples-intro { font-size: 17px; color: var(--dark); line-height: 1.7; margin-bottom: 48px; max-width: var(--narrow); }
.ba-grid { display: flex; flex-direction: column; gap: 48px; max-width: 700px; margin: 0 auto; }
.ba-item { position: relative; cursor: col-resize; user-select: none; line-height: 0; }
.ba-after { width: 100%; height: auto; display: block; }
.ba-before {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
    clip-path: inset(0 50% 0 0);
}
.ba-handle {
    position: absolute; top: 0; left: 50%; width: 0; height: 100%; z-index: 2;
    pointer-events: none;
}
.ba-line {
    position: absolute; top: 0; left: -1px; width: 2px; height: 100%;
    background: white;
}
.ba-circle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 32px; height: 32px; border-radius: 50%; background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.ba-caption {
    font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--grey); margin-top: 12px; text-align: center;
    line-height: 1.4;
}

@media (max-width: 700px) { }


/* ---- FAQ ---- */
.faq-page { padding: 120px var(--margin) 80px; }
.faq-content { max-width: var(--narrow); margin: 0 auto; }
.faq-content h1 {
    font-family: var(--serif); font-size: clamp(28px, 4vw, 40px);
    font-weight: 400; margin-bottom: 48px;
}
.faq-item { border-bottom: 1px solid var(--faint); }
.faq-q {
    font-size: 17px; font-weight: 400; padding: 24px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--grey); }
.faq-q::after {
    content: '+'; font-family: var(--mono); font-size: 18px; color: var(--light);
    transition: transform 0.3s, color 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--grey); }
.faq-a {
    font-size: 16px; line-height: 1.8; color: var(--dark);
    max-height: 0; overflow: hidden; transition: max-height 0.4s, padding 0.4s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }


/* ---- TRIAL FORM ---- */
.trial-page { padding: 120px var(--margin) 80px; }
.trial-content { max-width: var(--narrow); margin: 0 auto; }
.trial-content h1 {
    font-family: var(--serif); font-size: clamp(28px, 4vw, 40px);
    font-weight: 400; margin-bottom: 12px;
}
.trial-intro { font-size: 17px; color: var(--dark); line-height: 1.7; margin-bottom: 48px; }
.trial-form { max-width: 480px; }
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block; font-family: var(--mono); font-size: 11px;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 8px;
}
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--light);
    background: var(--bg); font-family: var(--serif); font-size: 16px;
    color: var(--black); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--grey); }
.form-group textarea { min-height: 100px; resize: vertical; }
.check-group { display: flex; flex-direction: column; gap: 12px; }
.check-item {
    display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
    font-family: var(--serif) !important; font-size: 16px !important; line-height: 1.5;
    text-transform: none !important; letter-spacing: 0 !important; font-weight: 400 !important; color: var(--dark);
}
.check-item input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--black); flex-shrink: 0; }
.check-item span { font-family: var(--serif); font-size: 16px; text-transform: none; letter-spacing: 0; }
.form-submit {
    font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    padding: 14px 32px; border: 1.5px solid var(--black); color: var(--black);
    background: none; cursor: pointer; transition: all 0.25s; width: 100%;
}
.form-submit:hover { background: var(--black); color: var(--white); }
.form-msg { font-family: var(--mono); font-size: 12px; margin-top: 16px; color: var(--grey); }


/* ---- CTA BANNER ---- */
.cta-banner {
    padding: 60px var(--margin); text-align: center;
    border-top: 1px solid var(--light); margin-top: 40px;
}
.cta-banner p { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--dark); margin-bottom: 24px; }
.cta-banner a { margin: 0 auto; }


/* ---- EMPTY STATE ---- */
.empty-state { text-align: center; padding: 80px 0; font-family: var(--mono); font-size: 13px; color: var(--grey); }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- PRINT ---- */
@media print { .site-header, .site-footer { display: none; } body { background: #fff; } }
