/* ══════════════════════════════════════════
   PROMEGO – Yhteinen tyylitiedosto
   Kaikki sivut käyttävät tätä tiedostoa
   ══════════════════════════════════════════ */

/* ── FONTIT – Paikalliset (ei verkkoyhteyttä tarvita) ── */

/* Barlow */
@font-face {
  font-display: swap;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  src: url('fontit/barlow-v13-latin-300.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('fontit/barlow-v13-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  src: url('fontit/barlow-v13-latin-500.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  src: url('fontit/barlow-v13-latin-600.woff2') format('woff2');
}

/* Barlow Condensed */
@font-face {
  font-display: swap;
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('fontit/barlow-condensed-v13-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  src: url('fontit/barlow-condensed-v13-latin-600.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('fontit/barlow-condensed-v13-latin-700.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  src: url('fontit/barlow-condensed-v13-latin-800.woff2') format('woff2');
}

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

/* ── MUUTTUJAT ── */
:root {
  --green:       #3d7a4f;
  --green-dark:  #2c5c39;
  --green-light: #eef6f1;
  --orange:      #e8a020;
  --text:        #1a1a1a;
  --muted:       #555;
  --border:      #d4e6da;
  --white:       #ffffff;
}

/* ── POHJA ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: #f7faf8;
}

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--green-dark);
  text-decoration: none;
  flex-shrink: 0;
  min-width: 140px;
  line-height: 1;
}

nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

nav a {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}

nav a:hover { background: var(--green-light); color: var(--green-dark); }
nav a.active { background: var(--green); color: var(--white); }

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: .82rem;
  color: var(--muted);
  flex-shrink: 0;
}

.header-contact a {
  color: var(--green-dark);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--green-dark);
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.35); }

.page-hero-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 580px;
  line-height: 1.65;
}

/* ── TOIMIALA LAYOUT (sidebar) ── */
.content-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.toimiala-nav {
  position: sticky;
  top: 90px;
}

.toimiala-nav h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.toimiala-nav a {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: all .15s;
  line-height: 1.3;
}

.toimiala-nav a:hover {
  background: var(--green-light);
  color: var(--green-dark);
  border-left-color: var(--green);
}

.toimiala-nav a.current {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
  border-left-color: var(--green);
}

/* ── TUOTTEET SISÄLTÖ ── */
.tuotteet-content h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.intro-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 680px;
}

/* ── TUOTEKORTTI ── */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: box-shadow .2s;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(61,122,79,.12);
}

.product-img {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  min-height: 200px;
  color: var(--green);
}

.product-body { padding: 28px 32px; }

.product-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.product-body h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .02em;
  margin-bottom: 10px;
}

.product-body p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
}

.product-features li {
  font-size: .88rem;
  color: var(--text);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.5;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ── ASIAKASSITATIT ── */
.quote-block {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 6px 6px 0;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.quote-block p {
  font-style: italic;
  color: var(--green-dark);
  font-size: .88rem;
  margin-bottom: 6px;
}

.quote-block cite {
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  font-style: normal;
}

/* ── PAINIKKEET ── */
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  transition: background .18s;
}

.product-cta:hover { background: var(--green-dark); }

.product-pdf {
  display: block;
  width: fit-content;
  background: var(--green-light);
  color: var(--green-dark);
  text-decoration: none;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: .9rem;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  margin-bottom: 12px;
  transition: background .18s;
}

.product-pdf:hover { background: var(--border); }

/* ── CTA BANNERI ── */
.cta-banner {
  background: var(--orange);
  padding: 48px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-banner p { color: rgba(255,255,255,.9); margin-bottom: 24px; }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

/* ── FOOTER ── */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.75);
  padding: 48px 24px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  line-height: 2;
  transition: color .15s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  display: flex;
  justify-content: space-between;
}

/* ── KARUSELLI ── */
.carousel {
  position: relative;
  padding: 0 !important;
  background: var(--white);
}

.carousel-slide {
  display: none;
  width: 100%;
  min-height: 200px;
  object-fit: cover;
}

.carousel-slide.active { display: block; }

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.cdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(44,92,57,.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}

.cdot.active { background: var(--green-dark); }

/* ── MOBIILI ── */
@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .toimiala-nav { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
  .toimiala-nav h3 { width: 100%; }
  .toimiala-nav a { border-left: none; border-bottom: 3px solid transparent; }
  .toimiala-nav a.current { border-left: none; border-bottom-color: var(--green); }
  .header-inner { flex-wrap: wrap; height: auto; padding: 8px 16px; gap: 4px; }
  .logo { font-size: 2.6rem; flex: 1; }
  .header-contact { flex-direction: column; align-items: flex-end; font-size: .72rem; }
  .header-contact span { display: none; }
  .header-contact a { font-size: .82rem; }
  nav { flex-wrap: wrap; gap: 4px; width: 100%; justify-content: flex-start; order: 3; }
  nav a { font-size: .78rem; padding: 4px 8px; }
}

@media (max-width: 700px) {
  .product-card { grid-template-columns: 1fr; }
  .product-img { min-height: 160px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ══════════════════════════════════════════
   ETUSIVU – Hero, toimialaruudukko, tuotekortit
   ══════════════════════════════════════════ */

.hero {
  position: relative;
  background: var(--green-dark);
  overflow: hidden;
  aspect-ratio: 1517 / 436;
  min-height: 320px;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { background: linear-gradient(135deg, #2c5c39 0%, #3d7a4f 50%, #1a3a24 100%); }
.hero-slide:nth-child(2) { background: linear-gradient(135deg, #1a3a24 0%, #4a8f60 50%, #2c5c39 100%); }
.hero-slide:nth-child(3) { background: linear-gradient(135deg, #3d7a4f 0%, #1a3a24 50%, #4a8f60 100%); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  max-width: 100%;
  margin-bottom: 20px;
  letter-spacing: .01em;
}

.hero p {
  color: rgba(255,255,255,.85);
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 100%;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.49rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background .2s, transform .15s;
}

.hero-cta:hover { background: #c8880f; transform: translateY(-2px); }

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .3s;
  border: none;
}

.dot.active { background: var(--white); }

/* ── ETUSIVUN TOIMIALAOSIO ── */
.toimialat-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: .02em;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.toimiala-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 22px 18px;
  border-radius: 6px;
  text-align: center;
  transition: background .18s, transform .15s, box-shadow .15s;
}

.toimiala-btn:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(61,122,79,.25);
}

/* ── ETUSIVUN TUOTEOSIO ── */
.tuotteet-section {
  background: var(--green-dark);
  padding: 64px 24px;
}

.tuotteet-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.tuotteet-section .section-title h2 { color: var(--white); }
.tuotteet-section .section-title p { color: rgba(255,255,255,.75); }

.tuote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.tuote-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: background .2s, transform .15s;
  text-decoration: none;
  color: var(--white);
}

.tuote-card:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-4px);
}

.tuote-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.tuote-card h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tuote-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* ── LIIKELAHJAT / TUOTTEET-SIVUT ── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section-title { margin-bottom: 36px; }

.price-box {
  background: var(--green-light);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: .82rem;
  color: var(--green-dark);
}

.price-box strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

/* Toimiala-kortit (toimialat.html) */
.toimiala-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.toimiala-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow .2s, transform .15s;
  display: flex;
  flex-direction: column;
}

.toimiala-card:hover {
  box-shadow: 0 8px 32px rgba(61,122,79,.15);
  transform: translateY(-4px);
}

.card-header {
  background: var(--green);
  padding: 28px 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-emoji { font-size: 2rem; }

.card-header h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .03em;
  line-height: 1.2;
}

.card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.card-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.card-product-tag {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.card-link {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Tekstiilit-sivu */
.lippis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lippis-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s, transform .15s;
}

.lippis-card:hover {
  box-shadow: 0 8px 28px rgba(61,122,79,.13);
  transform: translateY(-3px);
}

.lippis-img {
  background: var(--green-light);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.lippis-body { padding: 20px; }

.lippis-body h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.lippis-body p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.lippis-features {
  list-style: none;
  margin-bottom: 14px;
}

.lippis-features li {
  font-size: .82rem;
  color: var(--text);
  padding: 2px 0 2px 16px;
  position: relative;
}

.lippis-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.lippis-price {
  background: var(--green-light);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: .8rem;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.lippis-price strong { display: block; font-weight: 700; }

.lippis-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background .18s;
}

.lippis-cta:hover { background: var(--green-dark); }

.info-box {
  background: var(--green-dark);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 40px;
  color: var(--white);
}

.info-box h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.info-box p {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
}

.info-box a { color: var(--orange); font-weight: 600; text-decoration: none; }

/* Tuotteet-sivu kategoria-navigaatio */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 90;
}

.cat-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
}

.cat-nav a {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 14px 18px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}

.cat-nav a:hover { color: var(--green-dark); border-bottom-color: var(--green); }

.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--green-light);
}

.cat-icon {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cat-header h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: .02em;
}

.cat-header p { font-size: .9rem; color: var(--muted); margin-top: 2px; }

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

.product-card-img {
  background: var(--green-light);
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Tuotteet-sivun ruudukossa kortit ovat pystysuuntaisia */
.product-grid .product-card {
  display: flex;
  flex-direction: column;
  grid-template-columns: unset;
}

.product-grid .product-card-img {
  height: 400px;
}

.s-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
}
.s-btn-l { left: 8px; }
.s-btn-r { right: 8px; }

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background .18s;
  align-self: flex-start;
}

.product-card-cta:hover { background: var(--green-dark); }

.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  background: var(--white);
  border: 2px solid var(--green);
  color: var(--green-dark);
  text-decoration: none;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}

.cat-cta:hover { background: var(--green); color: var(--white); }

.divider { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.divider hr { border: none; border-top: 1px solid var(--border); }

/* ── MOBIILI LISÄYKSET ── */
@media (max-width: 900px) {
  .toimiala-grid { grid-template-columns: repeat(2, 1fr); }
  .toimiala-cards { grid-template-columns: repeat(2, 1fr); }
  .tuote-grid { grid-template-columns: 1fr; }
  .lippis-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .toimiala-grid { grid-template-columns: 1fr; }
  .toimiala-cards { grid-template-columns: 1fr; }
  .lippis-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 16px; }
  .hero { aspect-ratio: unset; min-height: 480px; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 1rem; }
}

/* ══════════════════════════════════════════
   YHTEYS-SIVU
   ══════════════════════════════════════════ */

.yhteys-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.form-section h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-section .intro {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,122,79,.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { grid-column: 1 / -1; margin-top: 8px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .18s, transform .15s;
}

.btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); }

.form-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 12px;
}

.success-msg {
  display: none;
  background: var(--green-light);
  border: 1.5px solid var(--green);
  border-radius: 8px;
  padding: 18px 22px;
  color: var(--green-dark);
  font-weight: 500;
  margin-top: 16px;
  grid-column: 1 / -1;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.contact-card-header {
  background: var(--green-dark);
  padding: 28px 28px 24px;
}

.contact-card-header h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-card-header p { color: rgba(255,255,255,.7); font-size: .88rem; }

.contact-card-body { padding: 28px; }

.yhteys-layout .contact-card-body .contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  border-bottom: none;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.info-card-body .contact-person:not(:first-child) {
  margin-top: 1.25rem;
}

.contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--white);
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
}

.contact-person-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-person-info span { font-size: .85rem; color: var(--muted); }

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

.contact-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text { display: flex; flex-direction: column; gap: 2px; }

.contact-item-text span {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item-text a,
.contact-item-text p {
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}

.contact-item-text a { color: var(--green-dark); }
.contact-item-text a:hover { color: var(--green-dark); }

.contact-card-footer {
  background: var(--green-light);
  padding: 16px 28px;
  font-size: .82rem;
  color: var(--green-dark);
  font-weight: 500;
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════
   YRITYS-SIVU
   ══════════════════════════════════════════ */

.stats-bar { background: var(--orange); padding: 0; }

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label { font-size: .88rem; color: rgba(255,255,255,.85); font-weight: 500; }

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
}

.story h2,
.values h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 20px;
  letter-spacing: .02em;
}

.story p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.story p strong { color: var(--text); font-weight: 600; }

.values { margin-top: 48px; }

.value-list { display: flex; flex-direction: column; gap: 20px; }

.value-item { display: flex; gap: 18px; align-items: flex-start; }

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.value-text h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.value-text p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

.sidebar { display: flex; flex-direction: column; gap: 24px; }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.info-card-header {
  background: var(--green-dark);
  padding: 18px 22px;
}

.info-card-header h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}

.info-card-body { padding: 22px; }

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  gap: 12px;
}

.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--muted); font-weight: 500; flex-shrink: 0; }
.info-row .value { color: var(--text); font-weight: 600; text-align: right; }
.info-row .value a { color: var(--green-dark); text-decoration: none; }

.toimialat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px;
}

.toimiala-tag {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: background .15s;
}

.toimiala-tag:hover { background: var(--green); color: var(--white); }

.cta-card {
  background: var(--green-dark);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
}

.cta-card h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-card p { color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: 18px; line-height: 1.5; }

.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .18s;
}

.btn-orange:hover { background: #c8880f; }

.toimialat-inner { max-width: 1200px; margin: 0 auto; }

/* Mobiili yhteys ja yritys */
@media (max-width: 900px) {
  .yhteys-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .main-content { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
}

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

/* Karusellin nuolipainikkeet */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #3d7a4f;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  transition: background 0.15s, color 0.15s;
}
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-prev:hover,
.carousel-next:hover {
  background: #3d7a4f;
  color: #fff;
}
