:root {
    --snow: #f7f5f2;
    --deep: #141414;
    --slate: #2a2a2a;
    --ice: #b8d4dc;
    --pine: #2c3e35;
    --warm: #c9b99a;
    --muted: #888;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--snow); color: var(--deep); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }

nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(247,245,242,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.07); transition: padding 0.3s;
}
.nav-brand { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--deep); text-decoration: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--pine); }
.nav-lang { display: flex; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.1em; }
.nav-lang a { color: var(--muted); text-decoration: none; padding: 0.25rem 0.5rem; border-radius: 3px; transition: all 0.2s; }
.nav-lang a.active, .nav-lang a:hover { color: var(--deep); background: rgba(0,0,0,0.06); }
.nav-cta { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--snow) !important; background: var(--pine); padding: 0.5rem 1.2rem !important; border-radius: 3px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--slate) !important; }

.hero { height: 100vh; position: relative; display: grid; place-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('./images/mokki_etu.jpg') center/cover no-repeat; filter: brightness(0.55); transform: scale(1.03); animation: subtleZoom 18s ease-in-out infinite alternate; }
@keyframes subtleZoom { from { transform: scale(1.03); } to { transform: scale(1.08); } }
.hero-content { position: relative; text-align: center; color: var(--snow); animation: fadeUp 1.2s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ice); margin-bottom: 1rem; font-weight: 400; }
.hero h1 { font-family: var(--serif); font-size: clamp(4rem, 10vw, 8rem); font-weight: 300; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--ice); }
.hero-sub { font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(247,245,242,0.7); margin-bottom: 2.5rem; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(247,245,242,0.5); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(247,245,242,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.stats-bar { background: var(--deep); color: var(--snow); display: flex; justify-content: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 1.8rem 3rem; border-right: 1px solid rgba(255,255,255,0.08); gap: 0.3rem; flex: 1; max-width: 200px; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 300; line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

.gallery-section { padding: 5rem 3rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.7rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.1; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 260px 260px; gap: 8px; max-width: 1300px; margin: 0 auto; }
.gallery-grid .g-main { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-img { position: relative; overflow: hidden; cursor: pointer; border-radius: 4px; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-img:hover img { transform: scale(1.04); }
.show-all-btn { display: block; margin: 1.5rem auto 0; background: none; border: 1px solid var(--deep); color: var(--deep); padding: 0.75rem 2rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; border-radius: 3px; transition: all 0.2s; }
.show-all-btn:hover { background: var(--deep); color: var(--snow); }

.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 1000; justify-content: center; align-items: center; flex-direction: column; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lb-close { position: absolute; top: 1.5rem; right: 2rem; color: var(--snow); font-size: 2rem; cursor: pointer; opacity: 0.7; background: none; border: none; line-height: 1; }
.lb-close:hover { opacity: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: white; font-size: 1.5rem; padding: 1rem 1.2rem; cursor: pointer; border-radius: 3px; transition: background 0.2s; }
.lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 1.5rem; } .lb-next { right: 1.5rem; }
.lb-counter { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em; margin-top: 1rem; }

.description-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1300px; margin: 0 auto; padding: 5rem 3rem; align-items: start; }
.desc-left { padding-right: 5rem; }
.desc-right { border-left: 1px solid rgba(0,0,0,0.1); padding-left: 5rem; }
.desc-intro { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; line-height: 1.6; color: var(--slate); margin-bottom: 2rem; }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link { display: flex; align-items: center; gap: 0.5rem; color: var(--slate); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(0,0,0,0.15); padding: 0.5rem 1rem; border-radius: 3px; transition: all 0.2s; }
.social-link:hover { background: var(--deep); color: var(--snow); border-color: var(--deep); }
.social-link img { width: 16px; height: 16px; }

.features-section { background: var(--deep); padding: 5rem 3rem; color: var(--snow); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr);  gap: 2rem; max-width: 1300px; margin: 3rem auto 0; }
.feature-item { padding: 1.5rem; border: 1px solid rgba(255,255,255,0.1); background-color: var(--pine); border-radius: 4px; transition: border-color 0.2s; }
.feature-item:hover { border-color: rgba(255,255,255,0.3); }
.feature-icon { width: 20px; height: 20px; margin-bottom: 0.8rem; }
.feature-icon svg { width: 100%; height: 100%; stroke: var(--ice); fill: none; stroke-width: 1.5; }
.feature-name { font-size: 0.8rem; color: rgba(247,245,242,0.8); }

.pricing-section { padding: 5rem 3rem; max-width: 1300px; margin: 0 auto; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.price-card { border: 1px solid rgba(0,0,0,0.1); border-radius: 6px; padding: 2.5rem 2rem; text-align: center; transition: all 0.25s; position: relative; overflow: hidden; }
.price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--pine); transform: scaleX(0); transition: transform 0.3s; }
.price-card:hover::before { transform: scaleX(1); }
.price-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.07); }
.price-card.featured { background: var(--pine); color: var(--snow); border-color: var(--pine); }
.price-card.featured::before { background: var(--ice); transform: scaleX(1); }
.price-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.price-card.featured .price-label { color: rgba(247,245,242,0.6); }
.price-amount { font-family: var(--serif); font-size: 3.5rem; font-weight: 300; line-height: 1; margin-bottom: 0.3rem; }
.price-unit { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.price-card.featured .price-unit { color: rgba(247,245,242,0.6); }
.contact-cta { margin-top: 3rem; text-align: center; }
.cta-btn { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--pine); color: var(--snow); text-decoration: none; padding: 1rem 2.5rem; border-radius: 4px; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; transition: background 0.2s; }
.cta-btn:hover { background: var(--slate); }
.cta-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.pricing-note { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

.location-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.location-info { background: var(--slate); color: var(--snow); padding: 5rem; display: flex; flex-direction: column; justify-content: center; }
.location-info .section-tag { color: var(--ice); }
.location-info .section-title { color: var(--snow); margin-bottom: 2rem; }
.distance-list { list-style: none; margin-top: 1.5rem; }
.distance-list li { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; }
.distance-list li:last-child { border-bottom: none; }
.dist-place { color: rgba(247,245,242,0.7); }
.dist-val { color: var(--ice); font-weight: 500; }
.map-wrap { position: relative; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 500px; border: none; display: block; }

.calendar-section { padding: 5rem 3rem; background: #f0ede8; }
.calendar-wrap { max-width: 900px; margin: 3rem auto 0; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 40px rgba(0,0,0,0.08); }
.calendar-wrap iframe { width: 100%; height: 600px; border: none; display: block; }
.calendar-contact { text-align: center; margin-top: 2rem; }
.calendar-contact p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; }

footer { background: var(--deep); color: rgba(247,245,242,0.4); text-align: center; padding: 2.5rem; font-size: 0.72rem; letter-spacing: 0.12em; display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
footer a { color: inherit; text-decoration: none; }
footer a:hover { color: var(--snow); }
footer img { width: 60px; height: 30px; object-fit: contain; opacity: 0.5; vertical-align: middle; }

@media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
    .gallery-grid .g-main { grid-column: 1 / 3; grid-row: 1; }
    .description-section { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
    .desc-left { padding-right: 0; margin-bottom: 2rem; }
    .desc-right { border-left: none; border-top: 1px solid rgba(0,0,0,0.1); padding-left: 0; padding-top: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-cards { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .location-section { grid-template-columns: 1fr; }
    .location-info { padding: 3rem 1.5rem; }
    .stats-bar { flex-wrap: wrap; }
    .stat-item { min-width: 120px; }
    .gallery-section, .pricing-section, .calendar-section { padding: 3rem 1.5rem; }
}
