/* ==========================================================================
   Uutelapromotions – yhteinen tyyli kaikille sivuille
   Premium-brass / lämmin syvä musta
   ========================================================================== */

:root {
  /* Lämmin syvä musta */
  --bg: #100E0B;
  --bg-2: #1A1612;
  --bg-3: #221C16;

  /* Honey brass */
  --brass: #B8893A;
  --brass-bright: #D4A04C;
  --brass-soft: rgba(184, 137, 58, 0.22);
  --brass-faint: rgba(184, 137, 58, 0.08);

  /* Lämmin kerma */
  --text: #F2EBDC;
  --text-dim: #9C9286;
  --text-soft: #6E6862;

  --line: rgba(184, 137, 58, 0.14);
  --line-strong: rgba(184, 137, 58, 0.28);

  --container: 1300px;
  --pad-x: 64px;
  --pad-x-mobile: 24px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* RESET ------------------------------------------------------------------ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

/* SAAVUTETTAVUUS – skip-to-content */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brass);
  color: var(--bg);
  padding: 12px 20px;
  z-index: 9999;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Focus-tilat */
:focus-visible {
  outline: 2px solid var(--brass-bright);
  outline-offset: 3px;
}

/* NAVIGAATIO ------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 22px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(16, 14, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.005em;
  color: var(--text);
  text-decoration: none;
}

.nav-logo em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s var(--ease);
}

.nav-links a:hover { color: var(--brass-bright); }

.nav-cta {
  padding: 12px 26px;
  border: 1px solid var(--brass);
  color: var(--brass-bright);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--brass);
  color: var(--bg);
}

/* Burger-nappi (vain mobiilissa näkyvä) */
.burger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  position: relative;
  cursor: pointer;
  padding: 0;
}
.burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease), background 0.3s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }

.burger[aria-expanded="true"] span { background: var(--brass-bright); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* MOBIILIVALIKKO – fullscreen overlay -------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(16, 14, 11, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 100px 32px 56px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 0.3s var(--ease);
}
.mobile-menu a em {
  font-style: italic;
  color: var(--brass);
}
.mobile-menu a:hover { color: var(--brass-bright); }

.mobile-menu-cta {
  margin-top: 24px;
  padding: 16px 36px;
  border: 1px solid var(--brass);
  color: var(--brass-bright);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  font-weight: 500;
}

.mobile-menu-socials {
  margin-top: 24px;
  display: flex;
  gap: 28px;
}
.mobile-menu-socials a {
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  color: var(--text-soft);
}

@media (max-width: 768px) {
  .nav { padding: 14px var(--pad-x-mobile); }
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
}

/* Kun mobiilivalikko auki – estä body-scroll */
body.menu-open { overflow: hidden; }

/* BREADCRUMB ------------------------------------------------------------- */
.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px var(--pad-x) 0;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}
.breadcrumb a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.breadcrumb a:hover { color: var(--brass-bright); }
.breadcrumb-sep {
  margin: 0 14px;
  color: var(--brass-soft);
}
.breadcrumb-current {
  color: var(--text-dim);
}
@media (max-width: 768px) {
  .breadcrumb { padding: 100px var(--pad-x-mobile) 0; font-size: 10px; }
  .breadcrumb-sep { margin: 0 10px; }
}

/* HERO ------------------------------------------------------------------- */
.hero {
  padding: 120px var(--pad-x) 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}

/* Etusivun täyskorkea hero */
.hero--full {
  min-height: 100vh;
  padding: 180px var(--pad-x) 120px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 56px;
  font-weight: 500;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 36px; height: 1px;
  background: var(--brass);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 400;
}

.hero-tagline {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 56px;
  line-height: 1.85;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* Painikkeet --------------------------------------------------------------- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brass);
  color: var(--bg);
  border-color: var(--brass);
}
.btn-primary:hover {
  background: var(--brass-bright);
  border-color: var(--brass-bright);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(184, 137, 58, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--brass-soft);
  font-weight: 400;
}
.btn-secondary:hover {
  border-color: var(--brass);
  color: var(--brass-bright);
}

@media (max-width: 768px) {
  .hero { padding: 80px var(--pad-x-mobile) 80px; }
  .hero--full { padding: 140px var(--pad-x-mobile) 100px; min-height: auto; }
  .hero-eyebrow { margin-bottom: 40px; gap: 12px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 24px; }
  .hero-tagline { font-size: 18px; margin-bottom: 32px; }
  .hero-lead { font-size: 17px; line-height: 1.75; margin-bottom: 40px; }
  .btn-primary, .btn-secondary { padding: 16px 28px; font-size: 11px; }
}

/* SECTION SYSTEM --------------------------------------------------------- */
.section {
  padding: 140px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.section--alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
  padding: 140px 0;
}
.section--alt > .section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header--left {
  text-align: left;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
  font-weight: 500;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--brass-soft);
}
.section-header--left .section-eyebrow::after { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.section-header--left .section-title { margin-left: 0; }
.section-title em {
  font-style: italic;
  color: var(--brass-bright);
}

.section-intro {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-dim);
}
.section-header--left .section-intro { margin-left: 0; }

@media (max-width: 768px) {
  .section, .section--alt > .section-inner {
    padding-left: var(--pad-x-mobile);
    padding-right: var(--pad-x-mobile);
  }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .section--alt { padding: 90px 0; }
  .section-header { margin-bottom: 56px; }
}

/* TIER-CARDS – kaksi palvelutasoa rinnakkain ------------------------------ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.tier {
  background: var(--bg);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  transition: background 0.4s var(--ease);
}
.tier:hover { background: var(--bg-2); }

.tier-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 56px;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 400;
}

.tier h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.tier h3 em {
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 400;
}

.tier-def {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.tier-list-label,
.tier-fit-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 14px;
}

.tier-list {
  list-style: none;
  margin-bottom: 32px;
}
.tier-list li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dim);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.tier-list li:last-child { border-bottom: 0; }
.tier-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brass);
}

.tier-fit {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .tier-grid { grid-template-columns: 1fr; }
  .tier { padding: 48px 32px; }
  .tier-num { font-size: 42px; }
  .tier h3 { font-size: 28px; }
}

/* PROCESS / TOIMINTATAPA ------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-soft) 20%, var(--brass-soft) 80%, transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px;
  height: 72px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--brass-bright);
  background: var(--bg-2);
  font-weight: 500;
}
.process-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.process-step p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 32px; }
  .process-grid::before { display: none; }
  .process-num { width: 64px; height: 64px; font-size: 22px; }
}

/* HINNOITTELU ------------------------------------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  padding: 48px 36px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.price-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.price-card-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 18px;
}
.price-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 14px;
}
.price-card p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
}
.pricing-note {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card { padding: 36px 28px; }
}

/* MIKSI MINÄ – kolme tekstiblokkia --------------------------------------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 48px;
}
.reason {
  position: relative;
  padding-top: 28px;
}
.reason::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 56px;
  height: 1px;
  background: var(--brass);
}
.reason-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--brass);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: block;
}
.reason h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.reason h3 em {
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 400;
}
.reason p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .reasons-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* FAQ – akkordeon -------------------------------------------------------- */
.faq {
  max-width: 860px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 64px 28px 0;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
  position: relative;
  letter-spacing: -0.005em;
  transition: color 0.3s var(--ease);
}
.faq-question:hover { color: var(--brass-bright); }
.faq-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--brass);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}
.faq-icon::before { width: 14px; height: 1px; }
.faq-icon::after  { width: 1px; height: 14px; }

.faq-item[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[aria-expanded="true"] .faq-question { color: var(--brass-bright); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-answer-inner {
  padding: 0 64px 28px 0;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.85;
}
@media (max-width: 768px) {
  .faq-question { font-size: 17px; padding: 22px 44px 22px 0; }
  .faq-answer-inner { padding-right: 0; font-size: 16px; }
}

/* RELATED SERVICES (sisäiset linkit) ------------------------------------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
.related-card {
  background: var(--bg);
  padding: 44px 36px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: background 0.4s var(--ease);
  position: relative;
}
.related-card:hover { background: var(--bg-2); }
.related-card::after {
  content: '→';
  position: absolute;
  bottom: 36px; right: 36px;
  font-size: 18px;
  color: var(--brass);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.related-card:hover::after {
  transform: translateX(6px);
  color: var(--brass-bright);
}
.related-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
  padding-right: 32px;
}
.related-card h3 em {
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 400;
}
.related-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
  .related-card { padding: 36px 28px; }
  .related-card::after { bottom: 28px; right: 28px; }
}

/* CTA -------------------------------------------------------------------- */
.cta {
  padding: 160px var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(184, 137, 58, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-bottom: 28px;
}
.cta h2 em {
  font-style: italic;
  color: var(--brass-bright);
}
.cta p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cta { padding: 100px var(--pad-x-mobile); }
}

/* AI SEO -tekstiosio ------------------------------------------------------ */
.ai-seo {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px var(--pad-x) 96px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.85;
  border-top: 1px solid var(--line);
}
.ai-seo p { margin-bottom: 16px; }
.ai-seo p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .ai-seo { padding: 48px var(--pad-x-mobile) 64px; }
}

/* SITE FOOTER (4-sarakkeinen, jaettu kaikilla sivuilla) ------------------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 88px var(--pad-x) 0;
}

.site-footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
  font-weight: 500;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 0.005em;
}
.footer-brand .footer-logo em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}

.footer-brand-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 320px;
  font-weight: 300;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s var(--ease);
  font-weight: 300;
}
.footer-list a:hover { color: var(--brass-bright); }

.footer-areas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
}

/* Footer-meta-rivi (alimpana) */
.site-footer-meta {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.footer-meta-left {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}
.footer-meta-center {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
  opacity: 0.75;
}
.footer-meta-center a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer-meta-center a:hover { color: var(--brass); }
.footer-meta-right {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: right;
  font-weight: 500;
}
.footer-meta-right a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer-meta-right a:hover { color: var(--brass-bright); }
.footer-sep {
  margin: 0 12px;
  color: var(--brass-soft);
}

@media (max-width: 900px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
@media (max-width: 600px) {
  .site-footer { padding: 64px var(--pad-x-mobile) 0; }
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .site-footer-meta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
    padding: 24px 0 28px;
  }
  .footer-meta-left,
  .footer-meta-right,
  .footer-meta-center { text-align: center; }
}

/* PALVELUKORTIT – etusivun 3x2 ruudukko ----------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 32px;
}

.service-card {
  background: var(--bg);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  transition: background 0.4s var(--ease);
  position: relative;
}
.service-card:hover { background: var(--bg-2); }
.service-card::after {
  content: '→';
  position: absolute;
  bottom: 36px; right: 36px;
  font-size: 18px;
  color: var(--brass);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.service-card:hover::after {
  transform: translateX(6px);
  color: var(--brass-bright);
}

.service-card-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--brass);
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  font-weight: 400;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  padding-right: 32px;
}
.service-card h3 em {
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 400;
}

.service-card-desc {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 28px;
  flex-grow: 1;
  font-weight: 300;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.service-card-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 5px 12px;
  border: 1px solid var(--brass-faint);
  border-radius: 100px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 44px 28px; }
  .service-card::after { bottom: 28px; right: 28px; }
}

/* TIETOA NEASTA – split-layout kuva + teksti ------------------------------ */
.about-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
  margin-top: 16px;
}

.about-portrait {
  aspect-ratio: 4/5;
  background:
    linear-gradient(160deg, rgba(184, 137, 58, 0.14) 0%, transparent 60%),
    linear-gradient(to bottom right, #2A211A, #100E0B);
  position: relative;
  border: 1px solid var(--line);
}
.about-portrait::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--brass-soft);
  pointer-events: none;
}
.about-portrait::after {
  content: 'NEA';
  position: absolute;
  bottom: 56px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 88px;
  color: rgba(184, 137, 58, 0.18);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.about-content .section-eyebrow {
  margin-bottom: 22px;
  justify-content: flex-start;
}
.about-content .section-eyebrow::after { display: none; }

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin-bottom: 28px;
  color: var(--text);
  text-align: left;
}
.about-content h2 em {
  font-style: italic;
  color: var(--brass-bright);
}
.about-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 18px;
  max-width: 540px;
  font-weight: 300;
}
.about-content p strong {
  color: var(--text);
  font-weight: 400;
}

.about-stats {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  max-width: 540px;
}

.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--brass-bright);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-num sup {
  font-size: 0.5em;
  font-style: italic;
  margin-left: 2px;
}
.about-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-bright);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.about-cta:hover { color: var(--brass); }

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait { max-width: 380px; margin: 0 auto; width: 100%; }
  .about-stats { gap: 28px; }
  .about-stat-num { font-size: 34px; }
}

/* SERTIFIKAATIT-RIVI ------------------------------------------------------ */
.certificates-row {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px var(--pad-x);
}
.certificates-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  text-align: center;
}
.certificate-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.certificate-item::before {
  content: '✓';
  color: var(--brass-bright);
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.certificates-note {
  width: 100%;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  font-weight: 300;
}
@media (max-width: 768px) {
  .certificates-row { padding: 36px var(--pad-x-mobile); }
  .certificates-inner { gap: 24px; }
  .certificate-item { font-size: 16px; }
}

/* HERO META -RIVI etusivun heron alalaidassa (desktop only) ---------------- */
.hero-meta {
  position: absolute;
  bottom: 40px;
  left: var(--pad-x);
  right: var(--pad-x);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  gap: 24px;
  pointer-events: none;
}
.hero-meta-line {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.hero-meta-line::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brass-soft);
  display: inline-block;
}
@media (max-width: 900px) {
  .hero-meta { display: none; }
}

/* CTA-META-RIVI yhteystiedot CTA-osion alla -------------------------------- */
.cta-meta {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.cta-meta-item { text-align: center; }
.cta-meta-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
  font-weight: 500;
}
.cta-meta-value {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s var(--ease);
  letter-spacing: -0.005em;
}
a.cta-meta-value:hover { color: var(--brass-bright); }
.cta-meta-value em {
  font-style: italic;
  color: var(--brass);
}
@media (max-width: 768px) {
  .cta-meta { gap: 32px; margin-top: 40px; padding-top: 28px; }
  .cta-meta-value { font-size: 16px; }
}

/* COOKIE CONSENT --------------------------------------------------------- */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--brass);
  padding: 22px 26px 24px;
  z-index: 90;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s var(--ease);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.cookie-consent-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.cookie-consent p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.cookie-consent a {
  color: var(--brass-bright);
  text-decoration: underline;
}
.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 44px;
  padding: 12px 14px;
  border: 1.5px solid var(--brass-soft);
  background: transparent;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: 'Inter', sans-serif;
  text-align: center;
  line-height: 1.3;
}
.cookie-btn--primary {
  background: var(--brass);
  color: var(--bg);
  border-color: var(--brass);
}
.cookie-btn--primary:hover,
.cookie-btn--primary:focus-visible {
  background: var(--brass-bright);
  border-color: var(--brass-bright);
  outline: none;
}
.cookie-btn:not(.cookie-btn--primary):hover,
.cookie-btn:not(.cookie-btn--primary):focus-visible {
  border-color: var(--brass);
  color: var(--brass-bright);
  outline: none;
}

/* Mobiili: painikkeet allekkain (helpompi osua) */
@media (max-width: 480px) {
  .cookie-consent {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 20px 20px 22px;
  }
  .cookie-consent-actions {
    flex-direction: column;
  }
  .cookie-btn {
    flex: 1 1 auto;
    width: 100%;
    padding: 14px 16px;
  }
}

/* SCROLL-REVEAL ANIMAATIOT ----------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Vähennä animaatioita jos käyttäjä niin haluaa */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   YHTEYSSIVU – split-layout, yhteystieto-blokit, lomake
   /yhteys.html – konversiosivu
   ========================================================================== */

/* Saavutettavuus – piilotettu ruudunlukuohjelmille */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Section-säätö: tiukempi padding hero ↔ split */
.section--contact {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .section--contact { padding-top: 40px; padding-bottom: 60px; }
}

/* Split-layout: 5fr 7fr – yhteystiedot vasemmalla, lomake oikealla */
.contact-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
}

/* ----- VASEN SARAKE: yhteystiedot ----- */
.contact-info-intro {
  margin-bottom: 32px;
}
.contact-info-intro .section-eyebrow {
  margin-bottom: 18px;
  justify-content: flex-start;
}
.contact-info-intro .section-eyebrow::after { display: none; }

.contact-info-intro h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  color: var(--text);
}
.contact-info-intro h3 em {
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 400;
}
.contact-info-intro p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 460px;
}

/* Yhteystieto-blokit */
.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-block {
  background: var(--bg);
  padding: 22px 26px;
  display: block;
  text-decoration: none;
  color: var(--text);
  position: relative;
  transition: background 0.3s var(--ease);
}
.contact-block--link:hover {
  background: var(--bg-2);
}
.contact-block--link:hover .contact-block-arrow {
  color: var(--brass-bright);
  transform: translateX(4px);
}
.contact-block--link:hover .contact-block-value {
  color: var(--brass-bright);
}

.contact-block-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-block-value {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.005em;
  word-break: break-word;
  transition: color 0.3s var(--ease);
}

.contact-block-meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
  font-weight: 300;
}

.contact-block-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--brass);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.contact-block--link {
  padding-right: 56px;
}

@media (max-width: 768px) {
  .contact-block { padding: 20px 22px; }
  .contact-block-value { font-size: 17px; }
  .contact-block-arrow { right: 18px; font-size: 16px; }
  .contact-block--link { padding-right: 48px; }
}

/* ----- OIKEA SARAKE: lomake ----- */
.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 48px 44px;
  position: relative;
}

.contact-form-intro {
  margin-bottom: 32px;
}
.contact-form-intro .section-eyebrow {
  margin-bottom: 16px;
  justify-content: flex-start;
}
.contact-form-intro .section-eyebrow::after { display: none; }

.contact-form-intro h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}
.contact-form-intro h3 em {
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 400;
}
.contact-form-intro p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-dim);
  font-weight: 300;
}

.form-required-mark {
  color: var(--brass-bright);
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-form-wrap { padding: 36px 24px; }
}

/* Lomakkeen rakenne */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Botcheck – piilotettu */
.form-botcheck {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px; height: 1px;
}

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

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

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

.form-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  min-height: 48px; /* mobiilissa helppo tappaa */
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-soft);
  opacity: 1;
  font-weight: 300;
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: var(--brass-soft);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--bg-3);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
  font-family: 'Inter', sans-serif;
}

/* Select – mukautettu nuoli */
.form-select {
  background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%),
                    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 22px) center, calc(100% - 16px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
  cursor: pointer;
}
.form-select.is-prefilled {
  border-color: var(--brass-soft);
}
.form-select option {
  background: var(--bg);
  color: var(--text);
}

/* Checkbox – mukautettu */
.form-field--checkbox {
  margin-top: 4px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}
.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-checkbox-mark {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  position: relative;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  margin-top: 2px;
}
.form-checkbox-mark::after {
  content: '';
  position: absolute;
  left: 6px; top: 1px;
  width: 7px; height: 13px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s var(--ease);
}
.form-checkbox input[type="checkbox"]:checked + .form-checkbox-mark {
  background: var(--brass-bright);
  border-color: var(--brass-bright);
}
.form-checkbox input[type="checkbox"]:checked + .form-checkbox-mark::after {
  transform: rotate(45deg) scale(1);
}
.form-checkbox input[type="checkbox"]:focus-visible + .form-checkbox-mark {
  outline: 2px solid var(--brass-bright);
  outline-offset: 3px;
}
.form-checkbox-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-dim);
  font-weight: 300;
}
.form-checkbox-text a {
  color: var(--brass-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-checkbox-text a:hover {
  color: var(--brass);
}

/* Lähetyspainike */
.form-field--submit {
  margin-top: 8px;
}
.form-submit {
  position: relative;
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}
.form-submit-spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(16, 14, 11, 0.25);
  border-top-color: var(--bg);
  border-radius: 50%;
  margin-left: 8px;
  animation: formSpin 0.8s linear infinite;
}
.form-submit.is-loading .form-submit-spinner { display: inline-block; }
@keyframes formSpin {
  to { transform: rotate(360deg); }
}

/* Tila-alue (success / error) */
.form-status {
  margin-top: 8px;
  padding: 28px 28px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.form-status--success {
  border-color: var(--brass);
  background: linear-gradient(135deg, var(--brass-faint) 0%, var(--bg) 70%);
}
.form-status--error {
  border-color: rgba(220, 90, 60, 0.45);
  background: rgba(220, 90, 60, 0.06);
}
.form-status-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.form-status--success .form-status-title { color: var(--brass-bright); }
.form-status-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 18px;
  font-weight: 300;
}
.form-status-text a {
  color: var(--brass-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-status-cta {
  margin-top: 4px;
}
@media (max-width: 768px) {
  .form-status { padding: 24px 22px; }
  .form-status-title { font-size: 20px; }
}

/* ----- LOPETUS-OSIO – lyhyt rauhoittava teksti ----- */
.contact-closing {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px var(--pad-x) 80px;
  text-align: center;
}
.contact-closing p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-soft);
  font-style: italic;
  font-weight: 300;
}
@media (max-width: 768px) {
  .contact-closing { padding: 16px var(--pad-x-mobile) 56px; }
  .contact-closing p { font-size: 14.5px; }
}

/* ==========================================================================
   LEGAL / POLICY -SIVUT (tietosuoja, evästeet)
   ========================================================================== */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 100px;
}
.legal-meta {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  margin: 56px 0 18px;
  letter-spacing: 0.005em;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h2 .legal-num {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--brass-bright);
  letter-spacing: 0.18em;
  margin-right: 14px;
  vertical-align: middle;
}
.legal h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  margin: 28px 0 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-dim);
  font-weight: 300;
}
.legal p { margin-bottom: 14px; }
.legal ul,
.legal ol {
  margin: 0 0 18px 22px;
  padding: 0;
}
.legal li { margin-bottom: 6px; }
.legal a {
  color: var(--brass-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--brass); }
.legal strong { color: var(--text); font-weight: 500; }
.legal-contactblock {
  border-left: 2px solid var(--brass);
  background: var(--bg-2);
  padding: 18px 22px;
  margin: 16px 0 18px;
}
.legal-contactblock p { margin-bottom: 4px; }
.legal-contactblock p:last-child { margin-bottom: 0; }

.legal-table-wrap {
  margin: 12px 0 26px;
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}
.legal-table caption {
  caption-side: top;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--text-dim);
  line-height: 1.55;
  font-weight: 300;
}
.legal-table thead th {
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: var(--bg-3);
}
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table tbody td:first-child {
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.legal-cookies-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 24px;
}
.legal-cookies-actions .btn-secondary {
  font-size: 11px;
}

.legal-update-note {
  margin-top: 56px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .legal { padding: 0 var(--pad-x-mobile) 80px; }
  .legal h2 { font-size: 22px; margin-top: 44px; }
  .legal h2 .legal-num { display: block; margin-bottom: 4px; font-size: 11px; }
  .legal p, .legal li { font-size: 15.5px; }
}
