/* =========================================================
   DESIGN TOKENS
========================================================= */
:root {
  --color-forest-900: #012608;
  --color-forest-800: #03400d;
  --color-forest-700: #0a4d17;
  --color-earth-700: #6b2b05;
  --color-earth-600: #6b4b33;
  --color-brown-dark-2: #241B14;
  --color-sand-800: #A7834B;
  --color-sand-500: #D3B683;
  --color-sand-400: #ddc89e;
  --color-sand-300: #E6D5A8;
  --color-surface: #F0F2F1;
  --color-surface-2: #f8f6f1;
  --color-text: #202124;
  --color-text-soft: rgba(32, 33, 36, 0.78);
  --color-white: #ffffff;
  --color-border: rgba(1, 38, 8, 0.12);
  --color-glass: rgba(255,255,255,0.24);
  --color-glass-strong: rgba(255,255,255,0.36);
  --color-success: #00ff66;

  --shadow-soft: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-medium: 0 18px 45px rgba(0,0,0,0.18);
  --shadow-strong: 0 24px 60px rgba(0,0,0,0.24);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --container: 1200px;
  --transition-fast: 180ms ease;
  --transition: 280ms ease;
}

/* =========================================================
   RESET
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(230, 213, 168, 0.20), transparent 32%),
    linear-gradient(180deg, #d9c291 0%, var(--color-sand-500) 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: block;
}

a {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding-left: 1.25rem;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   LAYOUT
========================================================= */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section--compact {
  padding: 4rem 0;
}

.section--dark {
  background:
    linear-gradient(135deg, rgba(1, 38, 8, 0.97), rgba(3, 64, 13, 0.93));
  color: var(--color-white);
}

.section--light {
  background: var(--color-surface);
}

.section--sand {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06));
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title--light {
  color: var(--color-sand-500);
}

.section-title--dark {
  color: var(--color-forest-900);
}

.section-title--brown {
  color: var(--color-brown-dark-2);
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

.section-lead--light {
  color: rgba(255,255,255,0.80);
}

/* =========================================================
   NAPIT
========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--color-forest-900);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(1, 38, 8, 0.24);
}

.button--primary:hover {
  background: var(--color-forest-800);
}

.button--secondary {
  background: rgba(255,255,255,0.56);
  color: var(--color-forest-900);
  border-color: rgba(1, 38, 8, 0.18);
  backdrop-filter: blur(10px);
}

.button--secondary:hover {
  background: rgba(255,255,255,0.75);
}

.button--light {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.18);
}

.button--light:hover {
  background: rgba(255,255,255,0.18);
}

.button--etphonehome {
  background: #28a745; /* perus vihreä */
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.button--etphonehome:hover {
  background: #218838; /* tummempi vihreä hoverissa */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.button--etemail {
  background: #007bff; /* perus sininen */
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.button--etemail:hover {
  background: #0056b3; /* tummempi hover */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* =========================================================
   HEADER / NAV
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(1, 38, 8, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-brand__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-sand-500);
}

.site-brand__text span {
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__list a {
  text-decoration: none;
  color: var(--color-sand-500);
  font-weight: 600;
  opacity: 0.95;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.site-nav__list a:hover {
  color: var(--color-white);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
}

.nav-toggle span {
  height: 3px;
  width: 100%;
  border-radius: 999px;
  background: var(--color-sand-500);
  transition: var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}



/* =========================================================
   HERO – UUSI MODERNI VERSIO
========================================================= */

.hero {
  position: relative;
  overflow: hidden;
}

.hero--dark {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  color: #fff7ea;

  background:
    radial-gradient(circle at 75% 25%, rgba(218, 185, 124, 0.22), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #17120d 0%, #2a2118 48%, #0f0c09 100%);
}

.hero--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.hero--dark::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(218, 185, 124, 0.12);
  filter: blur(20px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 4rem;
  align-items: center;

  text-align: left;
}

.hero__content {
  max-width: 920px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;

  margin: 0 0 1.2rem;
  padding: .55rem .9rem;

  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);

  color: #f3dfb7;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.hero__title {
  max-width: 920px;
  margin: 0 0 1.4rem;

  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;

  color: #fff7ea;
}

.hero__lead,
.hero__lead_big {
  max-width: 760px;
  margin: 0;

  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.25;

  color: #f4eadb;
}

.hero__support {
  max-width: 680px;
  margin: 1.2rem 0 0;

  font-size: 1.1rem;
  line-height: 1.7;

  color: rgba(255,255,255,0.78);
}

.hero__locations {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;

  margin: 2rem 0 0;

  font-weight: 700;
  color: #fff4df;
}

.dot-list span:not(:last-child)::after {
  content: "";
}

.hero__locations span,
.hero__proof span {
  padding: .7rem 1rem;

  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);

  color: #fff4df;
  font-size: .95rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;

  margin: 2rem 0 0;
}

.hero__actions,
.hero__service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;

  justify-content: flex-start;
  margin-top: 2rem;
}

/* Logo / pyöreä lasikortti */
.hero__logo {
  width: auto;
  margin: 0;
}

.hero__logo--glow {
  justify-self: center;
  position: relative;
  overflow: hidden;

  width: clamp(240px, 28vw, 420px);
  aspect-ratio: 1 / 1;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: .5rem;
  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.16),
      rgba(255,255,255,0.04)
    );

  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);

  box-shadow:
    0 35px 90px rgba(0,0,0,0.45),
    0 0 120px rgba(218,185,124,0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);

  animation: heroFloat 7s ease-in-out infinite;
}

.hero__logo--glow::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at top left,
      rgba(255,255,255,0.22),
      transparent 42%
    );

  pointer-events: none;
}

.hero__logo--glow::after {
  content: "";
  position: absolute;
  inset: 18px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);

  pointer-events: none;
}

.hero__logo--glow img {
  position: relative;
  z-index: 1;

  width: 175%;
  max-width: none;
  height: auto;

  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.35));
  transform: translateY(2px);
}

@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================================================
   HERO – MOBIILI
========================================================= */

@media (max-width: 900px) {
  .hero--dark {
    min-height: auto;
    padding: 1.5rem 0 4rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .hero__eyebrow {
    margin-bottom: .75rem;
  }

  .hero__title {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
    line-height: .95;
    letter-spacing: -0.055em;
  }

  .hero__lead,
  .hero__lead_big {
    font-size: 1.35rem;
  }

  .hero__support {
    font-size: 1rem;
  }

  .hero__logo--glow {
    width: min(270px, 72vw);
    margin: 0 auto;
  }

  .hero__actions,
  .hero__service-buttons {
    align-items: stretch;
    justify-content: stretch;
  }

  .hero__actions .button,
  .hero__service-buttons .button {
    width: 100%;
    justify-content: center;
  }
}









/* =========================================================
   KOKO LEVEYDEN KUVAKAISTA
========================================================= */

.full-width-image-strip {
  width: 100%;
  height: clamp(220px, 32vw, 420px);
  overflow: hidden;
  margin: 0;
}

.full-width-image-strip picture,
.full-width-image-strip img {
  width: 100%;
  height: 100%;
  display: block;
}

.full-width-image-strip img {
  width: 100%;
  display: block;
  height: 520px;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 768px) {
  .full-width-image-strip img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}


/* =========================================================
   YLEISESTI-OSIO KUVA + TEKSTI
========================================================= */

.yleisesti-osio__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.yleisesti-osio__content {
  max-width: 720px;
}

.yleisesti-osio__title {
  text-align: left;
  margin-bottom: 1.4rem;
}

/*
.yleisesti-osio__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  background: var(--color-sand-300);
  height: 820px; /* SÄÄDÄ TÄTÄ *
}

.yleisesti-osio__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
*/

.yleisesti-osio__image {
  aspect-ratio: 3 / 4; /* kokeile myös 3/2 tai 16/10 */
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
}

.yleisesti-osio__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .yleisesti-osio__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .yleisesti-osio__content {
    max-width: 900px;
  }

  .yleisesti-osio__image img {
    min-height: 320px;
  }
}

/* =========================================================
   ETUSIVUN PALVELUKORTIT
========================================================= */

.etusivu-palvelut {
  background:
    radial-gradient(circle at 12% 18%, rgba(107, 75, 51, 0.05), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(1, 38, 8, 0.04), transparent 28%),
    linear-gradient(180deg, #faf4e8 0%, #f3e6c8 100%);
  color: var(--color-text);
}

.etusivu-palvelut__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 352px));
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin-top: 2.5rem;
}

.etusivu-palvelut .card-link {
  display: flex;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.etusivu-palvelut__card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;

  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.58), rgba(255,255,255,0.30));
  border: 1px solid rgba(211, 182, 131, 0.58);
  box-shadow: 0 16px 42px rgba(45, 33, 20, 0.06);

  text-align: left;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.etusivu-palvelut .card-link:hover .etusivu-palvelut__card {
  transform: translateY(-5px);
  border-color: rgba(211, 182, 131, 0.88);
  box-shadow: 0 24px 58px rgba(45, 33, 20, 0.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.38));
}

.etusivu-palvelut__card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--color-forest-900);
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.etusivu-palvelut__card p {
  color: var(--color-text-soft);
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.etusivu-palvelut__media {
  display: block;
  width: 100%;
  margin-bottom: 1.35rem;
  overflow: hidden;

  border-radius: 22px 22px 34px 22px;
  background:
    linear-gradient(145deg, rgba(211, 182, 131, 0.22), rgba(255,255,255,0.62));
}

.etusivu-palvelut__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  transition: transform 420ms ease;
}

.etusivu-palvelut .card-link:hover .etusivu-palvelut__media img {
  transform: scale(1.025);
}

.etusivu-palvelut__card .card__footer {
  margin-top: auto;
  padding-top: 1.1rem;
}

@media (max-width: 640px) {
  .etusivu-palvelut__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .etusivu-palvelut__card {
    padding: 1.15rem;
  }
}


/* =========================================================
   KIRJANPIDON PALVELUT -OSIO /kirjanpito
========================================================= */

.kirjanpito-palvelut {
  background:
    radial-gradient(circle at 12% 18%, rgba(107, 75, 51, 0.05), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(1, 38, 8, 0.04), transparent 28%),
    linear-gradient(180deg, #faf4e8 0%, #f3e6c8 100%);
  color: var(--color-text);
}

.kirjanpito-palvelut__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.kirjanpito-palvelut__card {
  padding: 1.2rem 0.9rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
}

.kirjanpito-palvelut__card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--color-forest-900);
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.kirjanpito-palvelut__card p {
  color: var(--color-text-soft);
  font-size: 1rem;
}

.kirjanpito-palvelut__image {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.kirjanpito-palvelut__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .kirjanpito-palvelut__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .kirjanpito-palvelut__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* =========================================================
   HINNASTOSIVU: ESIMERKKIHINNAT
========================================================= */

.pricing-examples-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(211, 182, 131, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(1, 38, 8, 0.32), transparent 34%),
    linear-gradient(135deg, #25170f 0%, #172018 52%, #101410 100%);
}

.pricing-examples-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(211, 182, 131, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 182, 131, 0.10) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.pricing-examples-section .container {
  position: relative;
  z-index: 1;
}

.pricing-examples-section .section-title,
.pricing-examples-section .section-title--dark {
  color: #f8f1e3;
}

.pricing-examples-section .section-lead {
  color: rgba(248, 241, 227, 0.78);
}

/* Ulompi lista */

.pricing-examples-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
  margin-top: 3.5rem;
}

/* Yksi hintaesimerkkirivi */

.pricing-example-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

/* Kortiton tekstialue */

.pricing-example-text {
  max-width: 520px;
}

.pricing-example-text h3 {
  margin: 0 0 1rem;
  color: #f8f1e3;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.pricing-example-text p {
  margin: 0;
  color: rgba(248, 241, 227, 0.78);
  font-size: 1.03rem;
  line-height: 1.65;
}

/* Linkki */

.pricing-example-link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

/* Pääkortti */

.pricing-example-card {
  position: relative;
  width: 100%;
  height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 30px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  background:
    radial-gradient(circle at 18% 0%, rgba(211, 182, 131, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(61, 43, 30, 0.97), rgba(17, 35, 23, 0.97));

  border: 1px solid rgba(211, 182, 131, 0.20);

  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.pricing-example-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(248, 241, 227, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 241, 227, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}

.pricing-example-card > * {
  position: relative;
  z-index: 1;
}

.pricing-example-link:hover .pricing-example-card {
  transform: translateY(-6px);
  border-color: rgba(211, 182, 131, 0.42);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(211, 182, 131, 0.12);
}

/* Sisäkortit */

.pricing-example-inner-card {
  padding: 1.25rem;
  border-radius: 20px;

  background:
    linear-gradient(145deg, rgba(235, 230, 220, 0.10), rgba(255, 255, 255, 0.035));

  border: 1px solid rgba(248, 241, 227, 0.12);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.pricing-example-inner-card h4 {
  margin: 0 0 0.85rem;
  color: #d3b683;
  font-size: 1.03rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.pricing-example-inner-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-example-inner-card li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(248, 241, 227, 0.86);
  font-size: 0.96rem;
  line-height: 1.5;
}

.pricing-example-inner-card li + li {
  margin-top: 0.55rem;
}

.pricing-example-inner-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d3b683;
  box-shadow: 0 0 12px rgba(211, 182, 131, 0.5);
}

.pricing-example-inner-card p {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(248, 241, 227, 0.12);

  color: #f8f1e3;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

/* =========================================================
   MOBIILI
========================================================= */

@media (max-width: 768px) {

  .pricing-examples-grid {
    gap: 3.5rem;
    margin-top: 2.5rem;
  }

  .pricing-example-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
  }

  .pricing-example-text,
  .pricing-example-link {
    width: 100%;
    max-width: 430px;
  }

  .pricing-example-text {
    text-align: left;
  }

  .pricing-example-text h3 {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
  }

  .pricing-example-text p {
    font-size: 1rem;
  }

  .pricing-example-card {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .pricing-example-inner-card {
    padding: 1.05rem;
  }
}



/* =========================================================
   TUMMANVIHREÄ FEATURE-ALUE
========================================================= */

.section--forest-feature {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0;

  background:
    radial-gradient(circle at top left,
      rgba(211, 182, 131, 0.10),
      transparent 26%),

    radial-gradient(circle at bottom right,
      rgba(230, 213, 168, 0.06),
      transparent 28%),

    linear-gradient(
      180deg,
      #06210d 0%,
      #081f10 45%,
      #041508 100%
    );

  color: #f7f4ee;
}

/* kevyt verkkokuvio */
.section--forest-feature::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);

  background-size: 42px 42px;

  mask-image: radial-gradient(circle at center,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,0.55) 70%,
    transparent 100%);

  pointer-events: none;
}

/* kevyt valoisuus / sumu */
.forest-feature__noise {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 50% 20%,
      rgba(255,255,255,0.05),
      transparent 42%);

  mix-blend-mode: screen;
  pointer-events: none;
}

.forest-feature__inner {
  position: relative;
  z-index: 2;

  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.forest-feature__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;

  margin-bottom: 1.4rem;
  padding: .55rem 1rem;

  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);

  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ddc89e;
}

.forest-feature__title {
  margin: 0 0 1.5rem;

  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;

  color: #fff;
}

.forest-feature__lead {
  margin: 2 auto;

  max-width: 760px;

  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.85;

  color: rgba(255,255,255,0.82);
}

/* hienovarainen alareunan valo */
.section--forest-feature::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);

  width: 70%;
  height: 240px;

  background:
    radial-gradient(circle,
      rgba(211, 182, 131, 0.18),
      transparent 70%);

  filter: blur(40px);
  pointer-events: none;
}

/* mobiili */
@media (max-width: 768px) {

  .section--forest-feature {
    padding: 4.5rem 0;
  }

  .forest-feature__title {
    line-height: 1.12;
  }

  .forest-feature__lead {
    line-height: 1.7;
  }

}


/* =========================================================
   RUSKEA / HIEKKA FEATURE-ALUE
========================================================= */

.section--earth-feature {
  background:
    radial-gradient(circle at 18% 18%,
      rgba(211, 182, 131, 0.20),
      transparent 28%),

    radial-gradient(circle at 86% 80%,
      rgba(107, 75, 51, 0.24),
      transparent 32%),

    linear-gradient(
      180deg,
      #2a160b 0%,
      #3a2112 48%,
      #1f1109 100%
    );

  color: #fff7ec;
}

.section--earth-feature::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}

.section--earth-feature::after {
  background:
    radial-gradient(circle,
      rgba(211, 182, 131, 0.24),
      transparent 70%);
}

.section--earth-feature .forest-feature__eyebrow {
  color: #f0d7a3;
  background: rgba(211, 182, 131, 0.08);
  border-color: rgba(211, 182, 131, 0.22);
}

.section--earth-feature .forest-feature__title {
  color: #fffaf2;
}

.section--earth-feature .forest-feature__lead {
  color: rgba(255, 247, 236, 0.82);
}



/* =========================================================
   VALKOINEN FEATURE-ALUE
========================================================= */

.section--forest-feature.section--sand-feature {
  background:white;
  color: #111;
}

/* selvästi näkyvämpi ruskea verkkokuvio */
.section--forest-feature.section--sand-feature::before {
  background-image:
    linear-gradient(rgba(107,75,51,0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,75,51,0.2) 1px, transparent 1px);

  background-size: 38px 38px;
  opacity: 1;
}

/* vaalea pehmennys */
.section--forest-feature.section--sand-feature::after {
  background:
    radial-gradient(circle,
      rgba(255,255,255,0.78),
      transparent 72%);
}

/* kevyt valo */
.section--forest-feature.section--sand-feature .forest-feature__noise {
  background:
    radial-gradient(circle at 50% 10%,
      rgba(255,255,255,0.65),
      transparent 44%);
}

/* tumma, selkeä eyebrow */
.section--forest-feature.section--sand-feature .forest-feature__eyebrow {
  color: #fff7ec;
  background: #5a3418;
  border-color: rgba(90,52,24,0.35);

  font-weight: 800;
  box-shadow: 0 10px 28px rgba(90,52,24,0.18);
}

/* otsikko aidosti mustaksi */
.section--forest-feature.section--sand-feature .forest-feature__title {
  color: #050505;
}

/* leipäteksti */
.section--forest-feature.section--sand-feature .forest-feature__lead {
  color: rgba(10,10,10,0.78);
}


/* =========================================================
   FEATURE-ALUE KUVALLA
========================================================= */

.section--feature-image .forest-feature__split {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.section--feature-image .forest-feature__content {
  max-width: 720px;
}

.section--feature-image .forest-feature__inner {
  max-width: none;
  text-align: left;
}

.section--feature-image .forest-feature__title,
.section--feature-image .forest-feature__lead {
  margin-left: 0;
  margin-right: 0;
}

.section--feature-image .forest-feature__image {
  margin: 0;
  position: relative;
}

.section--feature-image .forest-feature__image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 28px;

  box-shadow: 0 24px 70px rgba(0,0,0,0.20);
}

/* pieni koristekehys kuvan taakse */
.section--feature-image .forest-feature__image::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 30px;
  border: 1px solid rgba(107,75,51,0.22);
  pointer-events: none;
  z-index: -1;
}

/* mobiili */
@media (max-width: 860px) {
  .section--feature-image .forest-feature__split {
    grid-template-columns: 1fr;
  }

  .section--feature-image .forest-feature__content {
    text-align: center;
    margin: 0 auto;
  }

  .section--feature-image .forest-feature__title,
  .section--feature-image .forest-feature__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .section--feature-image .forest-feature__image {
    max-width: 560px;
    margin: 1rem auto 0;
  }

  .section--feature-image .forest-feature__image img {
    border-radius: 22px;
  }
}


/* =========================================================
   YRITYSMUOTOKOHTAISET PALVELUT
========================================================= */

.yritysmuodot-palvelut {
  background:
    radial-gradient(circle at 12% 18%, rgba(107, 75, 51, 0.08), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(1, 38, 8, 0.07), transparent 28%),
    linear-gradient(180deg, #f8f1e3 0%, #ead7ad 100%);
  color: var(--color-text);
}

.yritysmuodot-palvelut__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.yritysmuodot-palvelut__card {
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.54), rgba(255,255,255,0.26));
  border: 1px solid rgba(211, 182, 131, 0.72);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.yritysmuodot-palvelut__card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--color-forest-900);
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.yritysmuodot-palvelut__card h3 {
  color: var(--color-forest-900);
  font-size: 1.25rem;
  line-height: 1.25;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}

.yritysmuodot-palvelut__card p {
  color: var(--color-text-soft);
  font-size: 1.03rem;
}

@media (max-width: 900px) {
  .yritysmuodot-palvelut__grid {
    grid-template-columns: 1fr;
  }

  .yritysmuodot-palvelut__card {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .yritysmuodot-palvelut__card {
    padding: 1.5rem;
  }
}


/* =========================================================
   SERVICES
========================================================= */
.services {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(230,213,168,0.12), transparent 25%),
    linear-gradient(135deg, rgba(1,38,8,0.97), rgba(3,64,13,0.95));
}

.services .section-title {
  color: var(--color-sand-500);
}

.services .section-lead {
  color: rgba(255,255,255,0.76);
}

.service-block {
  margin-bottom: 32px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 320px));
  justify-content: center;
  gap: 2rem;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card {
  position: relative;
  height: 100%;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.30), rgba(255,255,255,0.18));
  border: 1px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(230, 213, 168, 0.65);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1,38,8,0.00) 0%, rgba(1,38,8,0.22) 100%);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.35rem 1.25rem;
}

.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  line-height: 1.15;
  color: var(--color-sand-500);
  margin-bottom: 0.9rem;
}

.card__text {
  color: white; /* rgba(17,17,17,0.88) */
  font-size: 1rem;
}

.card__text p {
  margin-bottom: 1rem;
}

.card__footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(1, 38, 8, 0.82);
  color: var(--color-sand-500);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(1,38,8,0.96), rgba(3,64,13,0.94));
  color: var(--color-white);
  font-weight: 700;
}


/* =========================================================
   REASONS / PROCESS / PROMISE
========================================================= */
.feature-list {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.2rem 1.2rem 1.2rem 0.5rem;
  border-bottom: 1px solid rgba(230,213,168,0.18);
}

.feature__number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 0.9;
  font-weight: 700;
  color: rgba(211, 182, 131, 0.42);
}

.feature__title {
  color: var(--color-sand-500);
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.feature__text {
  color: rgba(255,255,255,0.88);
}

.feature__text-brown {
  color: var(--color-brown-dark-2);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  justify-content: center;
  gap: 2rem;
}

.reason-card {
  padding: 1.3rem 1.1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  text-align: center;
  backdrop-filter: blur(10px);
}

.reason-card h3 {
  color: var(--color-sand-500);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.reason-card p {
  color: rgba(255,255,255,0.86);
}

/* =========================================================
   CTA STRIP
========================================================= */
.cta-strip {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
}

.cta-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 2.3rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.36);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(1,38,8,0.10);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   NEWS
========================================================= */
.news {
  position: relative;
  background:
    linear-gradient(180deg, #f8f6f1 0%, #efe7d6 100%);
  color: var(--color-text);
}

.news::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(107, 75, 51, 0.08), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(1, 38, 8, 0.08), transparent 26%);
  pointer-events: none;
}

.news__inner {
  position: relative;
  z-index: 1;
}

.news__header {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.news__eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(1, 38, 8, 0.08);
  color: var(--color-forest-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-list {
  display: grid;
  gap: 1.2rem;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem 1.4rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(1,38,8,0.10);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.news-card__date {
  font-size: 0.92rem;
  color: var(--color-earth-600);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.news-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  line-height: 1.15;
  color: var(--color-forest-900);
  margin-bottom: 0.6rem;
}

.news-card__excerpt {
  color: var(--color-text-soft);
  margin-bottom: 0.85rem;
}

.news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.news-card__tag {
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(107, 75, 51, 0.10);
  color: var(--color-earth-600);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-card__link {
  white-space: nowrap;
}

.news__more {
  text-align: center;
  margin-top: 1.5rem;
}

/* =========================================================
   FORM
========================================================= */
.contact-form {
  background:
    linear-gradient(135deg, rgba(1,38,8,0.97), rgba(3,64,13,0.94));
}

.contact-form .section-title {
  color: var(--color-sand-500);
}

.contact-form .section-lead {
  color: rgba(255,255,255,0.76);
}

.form-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.4rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid rgba(255,255,255,0.30);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(12px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label,
.choice-group legend,
.panel-head h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-forest-900);
}

.hint {
  color: rgba(32,33,36,0.72);
  font-size: 0.82rem;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  border: 1px solid rgba(1,38,8,0.20);
  background: rgba(255,255,255,0.94);
  color: var(--color-text);
  border-radius: 999px;
  padding: 15px 18px;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-sizing: border-box;
}

textarea {
  border-radius: 24px;
  resize: vertical;
  min-height: 140px;
  padding-top: 16px;
}

input:focus,
textarea:focus {
  border-color: var(--color-sand-500);
  box-shadow: 0 0 0 4px rgba(211, 182, 131, 0.18);
}

.choice-group {
  border: 1px solid rgba(1,38,8,0.14);
  border-radius: 22px;
  padding: 18px;
  margin: 0;
  min-width: 0;
  background: rgba(255,255,255,0.36);
}

.choice-group legend {
  padding: 0 8px;
}

.service-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(1,38,8,0.18);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(1,38,8,0.94);
  color: var(--color-sand-500);
  transition: all var(--transition-fast);
  font-weight: 600;
}

.radio-pill span::before,
.checkbox-pill span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-sand-500);
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
  transition: all var(--transition-fast);
  flex: 0 0 18px;
}

.choice-pill input:checked + span {
  border-color: var(--color-sand-500);
  box-shadow: 0 0 0 4px rgba(211, 182, 131, 0.16);
}

.choice-pill input:checked + span::before {
  border-color: var(--color-sand-500);
  background:
    radial-gradient(circle at center, var(--color-sand-500) 0 45%, transparent 48% 100%);
}

.error-message {
  margin: 12px 2px 0;
  color: #b42318;
  font-size: 0.95rem;
  font-weight: 700;
  display: none;
}

.error-message.show {
  display: block;
}

.service-panel {
  grid-column: span 6;
  position: relative;
  border: 1px solid rgba(1,38,8,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.52);
  padding: 18px;
  min-height: 320px;
  overflow: hidden;
  transition: opacity var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.service-panel[aria-disabled="true"] {
  opacity: 0.58;
}

.service-panel.active {
  opacity: 1;
  border-color: var(--color-sand-500);
  box-shadow: 0 0 0 4px rgba(211, 182, 131, 0.12);
}

.panel-head {
  margin-bottom: 14px;
}

.panel-head h3 {
  margin: 0 0 6px;
}

.panel-head p {
  margin: 0;
  color: rgba(32,33,36,0.72);
  font-size: 0.92rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.inline-check {
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 0 6px 10px 6px;
  min-height: 56px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.inline-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-sand-500);
  cursor: pointer;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: block;
  z-index: 5;
  cursor: pointer;
}

.service-panel.active .panel-overlay {
  display: none;
}

.submit-wrap {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.submit-btn {
  border: none;
  border-radius: 999px;
  padding: 15px 34px;
  min-width: 170px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  color: #2a2412;
  background: linear-gradient(180deg, var(--color-sand-400) 0%, var(--color-sand-500) 100%);
  box-shadow:
    0 10px 22px rgba(180, 145, 40, 0.28),
    0 4px 10px rgba(180, 145, 40, 0.18);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 26px rgba(180, 145, 40, 0.30),
    0 6px 14px rgba(180, 145, 40, 0.20);
}

/* =========================================================
   TWO COLUMN CONTENT
========================================================= */
.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.rounded-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.text-block {
  max-width: 760px;
}

.text-block p + p {
  margin-top: 1rem;
}

/* =========================================================
   CONTACT / FOOTER
========================================================= */
.contact-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-card__image {
  width: min(352px, 80vw);
  margin: 0 auto 1.5rem;
}

.site-footer {
  background: var(--color-forest-900);
  color: rgba(255,255,255,0.88);
  padding: 3rem 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.site-footer h3,
.site-footer h4 {
  color: var(--color-sand-500);
  margin-bottom: 0.7rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__list {
  display: grid;
  gap: 0.35rem;
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

/* =========================================================
   COOKIE BANNER
========================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 16px;
  display: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-box {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(18,18,20,.96);
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 16px 60px rgba(0,0,0,.45);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.10);
}

.cookie-text p {
  margin: .35rem 0 0 0;
  line-height: 1.35;
  color: rgba(255,255,255,.86);
}

.cookie-text a {
  color: #9ee7ff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border: 0;
  cursor: pointer;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease, background .2s ease, color .2s ease;
  user-select: none;
}

.cookie-btn:active {
  transform: translateY(1px);
}

.cookie-btn--necessary {
  background: var(--color-success);
  color: #06210f;
  box-shadow:
    0 0 0 2px rgba(0,255,102,.25),
    0 0 18px rgba(0,255,102,.55),
    0 10px 35px rgba(0,255,102,.25);
  filter: saturate(1.15);
}

.cookie-btn--necessary:hover {
  box-shadow:
    0 0 0 2px rgba(0,255,102,.35),
    0 0 22px rgba(0,255,102,.7),
    0 12px 40px rgba(0,255,102,.32);
}

.cookie-btn--secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.cookie-btn--secondary:hover {
  background: rgba(255,255,255,.18);
}

.cookie-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
}

.cookie-btn--ghost:hover {
  color: #fff;
}

.cookie-panel {
  max-width: 1100px;
  margin: 12px auto 0 auto;
}

.panel-box {
  background: rgba(18,18,20,.96);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 60px rgba(0,0,0,.35);
}

.toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
}

.toggle input {
  transform: scale(1.2);
}

.panel-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1180px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .service-panel {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: rgba(1, 38, 8, 0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .site-nav.is-active {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .card-grid,
  .reason-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .card {
    min-height: auto;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .feature {
    grid-template-columns: 60px 1fr;
  }

  .feature__number {
    font-size: 3.4rem;
  }

  .service-choices {
    flex-direction: column;
  }

  .choice-pill,
  .choice-pill span {
    width: 100%;
  }

  .choice-pill span {
    justify-content: flex-start;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .form-shell {
    padding: 1rem;
    border-radius: 24px;
  }

  input[type="text"],
  input[type="email"],
  input[type="number"],
  textarea {
    font-size: 16px;
  }

  .cookie-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-btn {
    width: 100%;
  }
}


/* =========================================================
   ARTIKKELISIVU (AJANKOHTAISET)
========================================================= */

.article-content {
  max-width: 900px;
  margin: 0 auto;
}

.article-content h2,
.article-content h3 {
  color: var(--color-forest-900);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.article-content p + p {
  margin-top: 1rem;
}

.article-content ul,
.article-content ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.article-summary-box {
  margin-bottom: 2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(1, 38, 8, 0.04);
  border: 1px solid rgba(1, 38, 8, 0.10);
}

.article-summary-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-forest-900);
}


/* ===== hintalaskuri ===== */

.calculator-section {
  padding: 4rem 0;
  background:white;
  position: relative;
  overflow: hidden;
}

.calculator-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,75,51,0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,75,51,0.2) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 122%);
  pointer-events: none;
}

.calculator-section .container {
  position: relative;
  z-index: 1;
}

.calculator-card {
  max-width: 720px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.78)),
    linear-gradient(135deg, rgba(47, 74, 56, 0.10), rgba(107, 75, 51, 0.10));
  border: 1px solid rgba(47, 74, 56, 0.22);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(47, 42, 32, 0.14);
  padding: 2rem;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.calculator-top {
  margin-bottom: 1.5rem;
}

.calculator-step-label {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #6b4b33;
}

.calculator-top h2 {
  margin: 0 0 0.75rem;
  color: #1f2d22;
}

.calculator-lead {
  margin: 0;
  color: #4b3b2b;
}

.calculator-top a {
  display: inline-block;
  margin-top: 0.75rem;
  color: #2f4a38;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.calculator-progress {
  width: 100%;
  height: 8px;
  background: rgba(47, 74, 56, 0.14);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.calculator-progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #2f4a38, #6b4b33);
  border-radius: 999px;
  transition: width 0.25s ease;
}

#calculatorForm {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.step {
  display: none;
  flex: 1;
}

.step.active {
  display: block;
}

.step h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #1f2d22;
}

.step-help {
  margin: 0 0 1.25rem;
  color: #5f513f;
}

.option-group {
  display: grid;
  gap: 0.75rem;
}

.option {
  display: block;
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(47, 74, 56, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(250,246,238,0.88));
  color: #1f2d22;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.option:hover {
  border-color: #2f4a38;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,234,216,0.95));
  box-shadow: 0 8px 18px rgba(47, 74, 56, 0.10);
}

.option.is-selected {
  border-color: #2f4a38;
  background:
    linear-gradient(180deg, rgba(235,244,232,0.96), rgba(243,234,216,0.96));
  box-shadow: 0 0 0 3px rgba(47, 74, 56, 0.14);
}

.input-block {
  margin-top: 1rem;
}

.input-block label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: #1f2d22;
}

.input-block input,
.input-block select {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(47, 74, 56, 0.26);
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  color: #1f2d22;
  font: inherit;
  box-sizing: border-box;
}

.input-block input:focus,
.input-block select:focus {
  outline: none;
  border-color: #2f4a38;
  box-shadow: 0 0 0 4px rgba(47, 74, 56, 0.13);
}

.input-block.is-disabled input:disabled,
.input-block.is-disabled select:disabled {
  background: rgba(243, 234, 216, 0.65);
  color: rgba(75, 59, 43, 0.55);
  cursor: not-allowed;
}

.summary-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(47, 74, 56, 0.18);
  color: #3f3528;
  line-height: 1.6;
}

.calculator-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.calculator-actions .button--primary,
.calculator-actions .button--secondary,
.calculator-actions .btn-primary,
.calculator-actions .btn-secondary {
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.calculator-actions .button--primary,
.calculator-actions .btn-primary {
  border: 1px solid #2f4a38;
  background: linear-gradient(180deg, #365841, #253c2d);
  color: #ffffff;
}

.calculator-actions .button--primary:hover,
.calculator-actions .btn-primary:hover {
  opacity: 0.96;
  box-shadow: 0 10px 22px rgba(47, 74, 56, 0.18);
}

.calculator-actions .button--secondary,
.calculator-actions .btn-secondary {
  border: 1px solid rgba(47, 74, 56, 0.28);
  background: rgba(255,255,255,0.76);
  color: #253c2d;
}

.calculator-actions .button--secondary:hover,
.calculator-actions .btn-secondary:hover {
  border-color: #2f4a38;
}

.calculator-actions .button--secondary[disabled],
.calculator-actions .button--primary[disabled],
.calculator-actions .btn-secondary[disabled],
.calculator-actions .btn-primary[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .calculator-card {
    padding: 1.25rem;
    min-height: 520px;
  }

  .calculator-actions {
    flex-wrap: wrap;
  }

  .calculator-actions .button--secondary,
  .calculator-actions .button--primary,
  .calculator-actions .btn-secondary,
  .calculator-actions .btn-primary {
    width: 100%;
  }
}




/* vanha hintalaskurin valkoinen tyyli
.calculator-section {
  padding: 4rem 0;
}

.calculator-card {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 2rem;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.calculator-top {
  margin-bottom: 1.5rem;
}

.calculator-step-label {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #6b7280;
}

.calculator-top h2 {
  margin: 0 0 0.75rem;
}

.calculator-lead {
  margin: 0;
  color: #4b5563;
}

.calculator-progress {
  width: 100%;
  height: 8px;
  background: #eef1f4;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.calculator-progress-bar {
  height: 100%;
  width: 25%;
  background: #111827;
  border-radius: 999px;
  transition: width 0.25s ease;
}

#calculatorForm {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.step {
  display: none;
  flex: 1;
}

.step.active {
  display: block;
}

.step h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.step-help {
  margin: 0 0 1.25rem;
  color: #6b7280;
}

.option-group {
  display: grid;
  gap: 0.75rem;
}

.option {
  display: block;
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.option:hover {
  border-color: #111827;
}

.option.is-selected {
  border-color: #111827;
  background: #f9fafb;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.input-block {
  margin-top: 1rem;
}

.input-block label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: #111827;
}

.input-block input,
.input-block select {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font: inherit;
  box-sizing: border-box;
}

.input-block input:focus,
.input-block select:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}

.input-block.is-disabled input:disabled,
.input-block.is-disabled select:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}

.summary-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #374151;
  line-height: 1.6;
}

.calculator-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.btn-primary,
.btn-secondary {
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  border: 1px solid #111827;
  background: #111827;
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 0.95;
}

.btn-secondary {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
}

.btn-secondary:hover {
  border-color: #111827;
}

.btn-secondary[disabled],
.btn-primary[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .calculator-card {
    padding: 1.25rem;
    min-height: 520px;
  }

  .calculator-actions {
    flex-wrap: wrap;
  }

  .calculator-actions .btn-secondary,
  .calculator-actions .btn-primary {
    width: 100%;
  }
}
*/

/* ===== kiitosviesti ===== */
.thank-you-section {
  padding: 4rem 0;
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.thank-you-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.thank-you-card h1 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.thank-you-card p {
  color: #4b5563;
}

.thank-you-actions {
  margin-top: 1.5rem;
}

/* hintalaskurin yliajo */