/* ============================================================
   HALLA ASUNTOKUVAUS — style.css
   ============================================================ */

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

:root {
  --bg-dark: #0e0e0e;
  --bg-deep: #141414;
  --bg-light: #f2ede8;
  --bg-white: #faf8f5;
  --text-light: #f2ede8;
  --text-dark: #0e0e0e;
  --text-muted: #888;
  --accent: #c9a96e;
  --accent-hover: #dfc08a;
  --divider-dark: rgba(255,255,255,0.15);
  --divider-light: rgba(0,0,0,0.12);
}

html { scroll-behavior: auto; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Skip link */
.skip-link {
  position: absolute; top: -50px; left: 20px; z-index: 9999;
  background: var(--accent); color: var(--text-dark);
  padding: 8px 16px; font-size: 13px; border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 20px; }

/* ---------- Smooth Scroll Wrapper ---------- */
#smooth-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

#smooth-content {
  will-change: transform;
  pointer-events: auto;
}

/* ---------- Typography ---------- */
.display {
  font-family: 'Bebas Neue', 'Arial Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero-headline { font-size: clamp(4rem, 12vw, 13rem); }
.section-headline { font-size: clamp(3rem, 9vw, 10rem); }
.sub-headline { font-size: clamp(1.8rem, 4vw, 3.5rem); }

/* ---------- Section Tag ---------- */
.section-tag {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 40px;
}
.section-number {
  font-family: 'Bebas Neue', 'Arial Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-top: 8px;
  opacity: 0.6;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.4s ease, background 0.3s ease;
  background: linear-gradient(to bottom, rgba(14,14,14,0.85) 0%, rgba(14,14,14,0.4) 70%, transparent 100%);
}

.nav-logo img {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--text-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nav-overlay-links a {
  font-family: 'Bebas Neue', 'Arial Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-light);
}
.nav-overlay-links a:hover { color: var(--accent); }
.nav-overlay-cta {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 14px 28px;
  display: inline-block;
  width: fit-content;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
}

.section[data-bg="dark"] { background: var(--bg-dark); color: var(--text-light); }
.section[data-bg="light"] { background: var(--bg-light); color: var(--text-dark); }

.container { max-width: 1400px; margin: 0 auto; width: 100%; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-inner { width: 100%; }

.headline-overflow { overflow: hidden; }

.hero-tagline {
  margin-top: 24px;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--text-muted);
  letter-spacing: 1px;
}

.hero-cta {
  display: inline-block;
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 14px 32px;
  transition: background 0.25s, color 0.25s;
}
.hero-cta:hover { background: var(--accent); color: var(--text-dark); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll-indicator::before {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: var(--accent);
  opacity: 0.5;
}

.accent-dot { color: var(--accent); }

/* ---------- PALVELUT ---------- */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.services-intro { max-width: 340px; }
.services-intro p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
}

.services-statement .display {
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.88;
  color: var(--text-light);
}

.services-list { margin-top: 0; }

.service-divider {
  height: 1px;
  background: var(--divider-dark);
  transform-origin: left;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}

.service-name {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--text-light);
}

.service-price {
  font-family: 'Bebas Neue', 'Arial Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: var(--accent);
  white-space: nowrap;
}

.services-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--divider-dark);
}

.services-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s;
}
.services-more:hover { gap: 14px; }
.services-more::after { content: '→'; }

/* Before/After Slider */
.slider-section { margin-top: 60px; }
.slider-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.before-after {
  position: relative;
  overflow: hidden;
  cursor: col-resize;
  border-radius: 2px;
  max-width: 720px;
  aspect-ratio: 16/9;
  user-select: none;
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before-after .img-after { z-index: 1; }
.before-after .img-before { z-index: 2; }

.ba-clip {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  width: 50%;
}
.ba-clip img {
  position: absolute;
  top: 0; left: 0;
  width: auto;
  max-width: none;
  height: 100%;
  min-width: 100%;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--accent);
  z-index: 3;
  transform: translateX(-50%);
}
.ba-handle::before {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: var(--text-dark);
  font-size: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  letter-spacing: -2px;
}

/* ---------- PARALLAX BREAK ---------- */
.parallax-break {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.parallax-break img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}

.parallax-break-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.parallax-break-text .display {
  font-size: clamp(2rem, 6vw, 6rem);
  color: var(--text-light);
  text-align: center;
  opacity: 0.9;
}

/* ---------- GALLERIA ---------- */
.gallery-header {
  margin-bottom: 60px;
}

.gallery-headline {
  font-size: clamp(2.5rem, 8vw, 8rem);
  line-height: 0.88;
  color: var(--text-dark);
  margin-top: 20px;
  max-width: 900px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-more-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  padding: 14px 32px;
  transition: background 0.25s, color 0.25s, gap 0.2s;
}
.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--bg-light);
  gap: 14px;
}
.btn-outline-dark::after { content: '→'; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 28px;
  color: var(--text-light);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  opacity: 0.6;
  padding: 20px;
  transition: opacity 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ---------- TIIMI ---------- */
.team-headline {
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.team-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.team-card-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1a1a;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(10%);
}

.team-card:hover .team-card-photo img {
  transform: scale(1.04);
}

.team-card-info {
  padding: 16px 12px;
  border-top: 1px solid var(--divider-dark);
}

.team-card-name {
  font-family: 'Bebas Neue', 'Arial Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-light);
  line-height: 1;
}

.team-card-role {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 5px;
}

/* ---------- KEHUT (Testimonials) ---------- */
.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.testimonials-headline {
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.88;
  color: var(--text-dark);
}

.testimonial-carousel { position: relative; }

.testimonial-item {
  display: none;
  opacity: 0;
}
.testimonial-item.active {
  display: block;
  opacity: 1;
}

.testimonial-quote {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-dark);
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  margin-bottom: 20px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.testimonial-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--divider-light);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.testimonial-dot.active { background: var(--text-dark); }

/* Stats */
.stats-row {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--divider-light);
}

.stat-item {}
.stat-number {
  font-family: 'Bebas Neue', 'Arial Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--text-dark);
  /* Prevent layout reflow during count-up animation */
  display: block;
  min-width: 7ch;
  white-space: nowrap;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- FAQ ---------- */
.faq-headline {
  margin-bottom: 60px;
}

.faq-list {}

.faq-divider {
  height: 1px;
  background: var(--divider-dark);
}

.faq-item {}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 500;
  color: var(--text-light);
  gap: 20px;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--accent);
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
}
.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- YHTEYSTIEDOT ---------- */
.contact-intro {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-email {
  font-family: 'Bebas Neue', 'Arial Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 6.5vw, 7rem);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text-light);
  word-break: break-all;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--accent); }

.contact-details {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--divider-dark);
  flex-wrap: wrap;
}

.contact-detail-item {}
.contact-detail-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contact-detail-value {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--text-light);
}

.contact-ctas {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--text-dark);
  padding: 14px 32px;
  font-weight: 600;
  transition: background 0.25s, gap 0.2s;
}
.btn-accent:hover { background: var(--accent-hover); gap: 14px; }
.btn-accent::after { content: '→'; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--divider-dark);
  padding: 14px 32px;
  transition: border-color 0.25s, color 0.25s, gap 0.2s;
}
.btn-outline-light:hover { border-color: var(--text-light); gap: 14px; }
.btn-outline-light::after { content: '→'; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-deep);
  padding: 60px 40px;
  border-top: 1px solid var(--divider-dark);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-nav h4, .footer-contact h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--text-light);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-nav a:hover { opacity: 1; color: var(--accent); }

.footer-contact p {
  font-size: 13px;
  color: var(--text-light);
  opacity: 0.7;
  line-height: 1.8;
}
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent); opacity: 1; }

.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--divider-dark);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

/* ---------- Divider animation helpers ---------- */
.reveal-line { overflow: hidden; }
.reveal-line-inner { display: block; }

/* ---------- HINNASTO page ---------- */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  padding-top: 120px;
}

.price-group { margin-bottom: 60px; }

.price-group-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price-divider {
  height: 1px;
  background: var(--divider-dark);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.price-name { color: var(--text-light); font-size: clamp(0.9rem, 1.1vw, 1.05rem); }

.price-val {
  font-family: 'Bebas Neue', 'Arial Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  color: var(--accent);
  white-space: nowrap;
}

.price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

.price-cta-block {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--divider-dark);
  text-align: center;
}

/* ---------- GALLERIA page ---------- */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-full-grid .gallery-item {
  aspect-ratio: 4/3;
}

/* ---------- VIDEO placeholders ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-deep);
  border: 1px solid var(--divider-dark);
  border-radius: 2px;
  overflow: hidden;
}

.video-placeholder-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.video-placeholder-icon {
  font-size: 32px;
  color: var(--accent);
  opacity: 0.5;
}

.video-placeholder-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

/* ---------- KUVAUSVALMISTELU page ---------- */
.prep-content { max-width: 800px; }

.prep-section { margin-bottom: 48px; }

.prep-section-title {
  font-family: 'Bebas Neue', 'Arial Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-light);
}

.prep-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.prep-divider { height: 1px; background: var(--divider-dark); }

.prep-list li {
  padding: 12px 0;
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  display: flex;
  gap: 12px;
}
.prep-list li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Print stylesheet (hinnasto) ---------- */
@media print {
  .nav, .hero-scroll-indicator, .footer { display: none; }
  body { background: white; color: black; font-size: 12pt; }
  .section { padding: 20px 0; }
  .price-row { padding: 8px 0; }
  .price-name { color: black; }
  .price-val { color: #555; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section { padding: 100px 32px; }
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-layout { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 80px 24px; }
  .nav { padding: 20px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { gap: 32px; flex-wrap: wrap; }
  .contact-details { gap: 32px; }
  .contact-ctas { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 60px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .services-statement .display { font-size: clamp(2rem, 9vw, 5rem); }
}

/* ---------- prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #smooth-wrapper { position: static; overflow: visible; }
  #smooth-content { transform: none !important; will-change: auto; }
}
