/* =======================================
   Sivukohtaiset tyylit
   Jo Designs
======================================= */

.brand-hero {
  background-image: url('https://jo-designs.net/wp-content/uploads/2025/09/pexels-fotios-photos-1989304-scaled.jpg');
  background-size: cover;
  background-position: 60% center;
  background-repeat: no-repeat;
  position: relative;
  padding: 160px 20px 140px;
  text-align: center;
  overflow: hidden;
}

/* Kevyt sävyoverlay */
.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(249, 243, 242, 0.65); *//* lämmin valkoinen */
  /*backdrop-filter: blur(1px);*/
		 background: linear-gradient(
    to bottom,
    rgba(249, 243, 242, 0.55),
    rgba(249, 243, 242, 0.75)
  );
}

/* Sisältö */
.brand-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.brand-hero .eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b9955d;
  margin-bottom: 1rem;
}

.brand-hero .lead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Mobiili */
@media (max-width: 768px) {
  .brand-hero {
    padding: 100px 20px;
    background-position: center;
  }
  .brand-hero .lead {
    font-size: 1rem;
  }
}

/*----- PALVELUT sivu HERO -----*/
.services-hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
  text-align: center;
  color: #2c2c2c;  
  box-sizing: border-box;
  padding: clamp(5rem, 10vw, 8rem) 5vw clamp(6rem, 12vw, 9rem);
}

.services-hero__inner {
  max-width: clamp(900px, 85vw, 1400px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  padding: clamp(50px, 5vw, 80px) clamp(20px, 4vw, 60px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  text-align: center;
}

.services-hero .lead {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: clamp(1.5, 2vw, 1.7);
  color: #444;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

/* ===== PALVELUT – vuorotteleva layout ===== */

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Jokainen palvelukortti */
.service-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*gap: clamp(2rem, 4vw, 4rem);*/
	gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
  max-width: 1200px;  
  margin-inline: auto;    
  width: 100%;          
}

/* Vaihdetaan järjestys tarvittaessa */
.service-card.reverse {
  flex-direction: row-reverse;
}

/* Kuvapuoli ja tekstipuoli – yhteiset */
.service-image,
.service-text {
  flex: 1 1 300px;
  min-width: 0;
  box-sizing: border-box;
}

/* Kuvan sisällä oleva kuva */
.service-image img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

/* Tekstipuoli tarkemmin */
.service-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.5;
}

/* Otsikko */
.service-text h3 {
  font-family: var(--font-heading);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* Teksti ja lista */
.service-text p,
.service-text li {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.5;
}

.service-text li {
  margin-bottom: clamp(0.4rem, 0.8vw, 0.75rem);
}

/* Listan marginaalit */
.services-grid ul,
.services-grid ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
  list-style-position: outside;
}

/* Otsikkolohko yläosassa */
.services-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 0 1rem;
}

.services-header .eyebrow {
  display: block;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
  margin-top: 15px;
}

.services-header p {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.services-intro {
  background-color: #E1E2D5;
  padding: 40px 10px 60px;
  text-align: center;
  font-family: var(--font-body);
  color: #3a2d3e;
  position: relative;
  overflow: hidden;
}

.services-intro::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #b9955d;
  margin: 24px auto 0;
  border-radius: 2px;
  opacity: 0.8;
}

.services-intro p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.9;
}

.services-intro:hover {
  background-color: #E1E2D5; 
  transition: background-color 0.4s ease;
}

/* --- Mobiiliasetukset: Services Intro --- */
@media (max-width: 768px) {
  .services-intro {
    padding: 16px 14px 24px;
    text-align: center;
  }

  .services-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .services-intro::after {
    width: 50px;
    height: 2px;
  margin: 24px auto 0;
  }
}
/* miten työskentelen - palvelut prosessi */

.palvelut-prosessi {
  padding: 40px 20px 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.palvelut-prosessi-steps li {
  list-style: none;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

/* numeropallo */
.palvelut-prosessi-steps .numero {
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

/* värit */
.palvelut-prosessi-steps .step-ochre .numero {
  background-color: var(--rose-gold); /* #B76E79 */
}
.palvelut-prosessi-steps .step-rose .numero {
  background-color: var(--rose-gold); /* #B76E79 */
}
/* otsikot */
.palvelut-prosessi-steps strong {
  color: var(--golden-ochre); /* #b58b4c */
  font-family: var(--font-body);
  font-weight: 600;
}

/* === MARKKINOINTIMATERIAALIT ==== */

.marketing-hero {
  background-image: url('https://jo-designs.net/wp-content/uploads/2025/10/de8ed2a6-2e1d-4db5-a83f-bbe2cdd48192-scaled.jpg');
  background-size: cover;
  background-position: 60% center;
  background-repeat: no-repeat;
  position: relative;
  padding: 160px 20px 140px;
  text-align: center;
  overflow: hidden;
}

/* Kevyt sävyoverlay */
.marketing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(249, 243, 242, 0.88); /* lämmin valkoinen */
  backdrop-filter: blur(1px);
}

/* Sisältö */
.marketing-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.marketing-hero .eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b9955d;
  margin-bottom: 1rem;
}

.marketing-hero h1 {
  font-family: var(--font-heading);
  color: #604573;
}

.marketing-hero .lead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Mobiili */
@media (max-width: 768px) {
  .marketing-hero {
    padding: 70px 0;
    background-position: center;
  }
  .marketing-hero .lead {
    font-size: 1rem;
		margin-left: 1.5rem;
  }
}

/* --- LISTAT: Materiaalit & Sisältyvät palvelut --- */

.page-id-3321 .section-divider {
 /*background: linear-gradient(180deg, #f5e5dd 0%, #fbf8f4 100%) !important;*/
  border-top: 1px solid rgba(185, 149, 93, 0.3); /* golden ochre */
}

.marketing-section {
  max-width: 900px;           
  margin: 0 auto 3rem;         
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: left;
}

.marketing-bg {
 background-color: #F9F8F7 !important;
}

.subtle {
  font-family: var(--font-body);
  line-height: 1.6;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.pricing-section h2,
.includes-section h2,
.material-notes h2 {
  font-family: var(--font-heading);
  margin: 2.5rem auto 1.2rem;
  text-align: left;
  max-width: 900px;
  padding: 0;
  line-height: 1.3;
}

.includes-section h2::after,
.material-notes h2::after {
  content: "";
  display: block;
  width: 60px;             
  height: 1px;   
  background-color: #b9955d; 
  margin-top: 0.6rem;
}

.material-list,
.includes-list {
  list-style: none;
  /*padding: 0 1rem !important;*/
  margin: 0 auto 2rem;
  max-width: 900px;
  text-align: left;
}

/* --- Rivit --- */
.material-list li,
.includes-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(107, 101, 67, 0.25); /* Deep Olive -tyylinen ohut raja */
  padding-top: 6px;
  padding-left: 6px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #333;
  line-height: 1.75;
  background-color: #f9f7f6; /* perusvaalea */
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

/* --- Vuorottelu rivien taustaan --- */
.material-list li:nth-child(odd) {
  background-color: #f3eee8; /* pehmeä lämmin beige */
}
.material-list li:nth-child(even) {
  background-color: #f9f7f6; /* hieman vaaleampi sävy */
}

/* --- Hover (ja focus) --- */
.textwidget .material-list li:hover,
.textwidget .includes-list li:hover,
.material-list li:focus-within,
.includes-list li:focus-within {
  background-color: #c9d3ba; /* haalea golden ochre */
  color: var(--deep-olive);
}

/* --- Strong-elementit (hinnat tms.) --- */
.material-list li strong,
.includes-list li strong {
  color: var(--golden-ochre);
  font-weight: 600;
  white-space: nowrap;
  padding: 0 1rem !important;
  transition: color 0.4s ease;
}

/* --- Hover-väri hinnalle --- */
.textwidget .material-list li:hover strong,
.textwidget .includes-list li:hover strong {
  color: var(--color-accent); /* violetti hover */
}

/* --- Väli rivien väliin --- */
.material-list li + li {
  margin-top: 4px;
}

/* --- NOTES & HUOMAUTUKSET --- */
.material-notes {
  border-top: 1px solid #b9955d;
  padding-top: 30px;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 30px;
  text-align: left;
}

.material-notes p {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 10px;
}

/* --- Symbolilista (esim. huomautusluettelot) --- */
.material-notes ul {
  list-style: none !important;
  padding-left: 0;
  margin: 10px 0 0;
}

.material-notes li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 0.4rem;
}

.material-notes li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #b7c5a6; /* Sage */
  font-size: 1.1rem;
  line-height: 1;
	content: "";
}

/* --- Pricing note: tiivistetty "Mitä hintaan sisältyy" -teksti --- */
.pricing-note {
  max-width: 900px;
  margin: 2rem auto 3rem;
  padding: 0 1.2rem;
  font-size: 0.95rem;
  color: #5b4c4c;
  line-height: 1.7;
  opacity: 0.9;
  text-align: left;
  font-style: italic;
  border-top: 1px solid rgba(185, 149, 93, 0.4);
  padding-top: 1.2rem;
}

/* responsiivisuus */
@media (max-width: 768px) {
  .pricing-note {
    padding: 0 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
		
 .pricing-note.subtle {
    font-size: 0.9rem;
    line-height: 1.55;
    padding: 0.8rem 1.2rem 1rem;
    margin: 1.4rem auto 0;
    color: #5b4c4c;
    text-align: left;
    font-style: italic;
    border-top: 1px solid rgba(185, 149, 93, 0.4);
    opacity: 0.9;
  }
}

.graphic-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  padding: 6rem 0;
  align-items: center;
}

.graphic-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--editorial-soft);
}

.graphic-hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin: 1rem 0;
}

.graphic-hero-lead {
  font-size: 1.05rem;
  max-width: 38ch;
  color: var(--editorial-text);
}

.graphic-hero__image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .graphic-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.graphic-portfolio-intro {
  max-width: 1100px;
  margin: 4rem auto 2rem;
  padding: 0 1.5rem;
}

.graphic-portfolio-intro h2 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted-brown);
}

.graphic-section-divider {
  width: 100%;
  max-width: 1100px;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 4rem auto 3rem;
}

/* ===== HERO TEXT CONTAINER FIX ===== */

.graphic-hero__content {
    width: 100%;
    padding: 0 14px;
    box-sizing: border-box;
}

.graphic-text-intro {
    max-width: 860px;
    margin: 0 auto;
}

.graphic-text-intro h2,
.graphic-text-intro p {
    max-width: 100%;
}

/* Desktop – hieman enemmän ilmaa */
@media (min-width: 1024px) {
    .graphic-text-intro {
        max-width: 760px;
    }
}

.full-width-section,
.graphic-hero,
.graphic-text-section {
    padding-left: 20px;
    padding-right: 20px;
}

/* Maksimileveys tekstille */
.full-width-section h2,
.full-width-section.bg-canyon h2
.full-width-section.bg-canyon > p
.full-width-section p,
.graphic-text-intro,
.graphic-text-section {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================
   GRAPHIC DESIGN – PRICING STYLES
================================ */

.graphic-pricing {
  max-width: 760px;
  margin: 0 auto;
}

.graphic-pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.graphic-pricing-intro {
  max-width: 900px;
  margin: 0.8rem auto 0;
  color: var(--editorial-soft);
	text-align: left;
}

/* ITEM */
.graphic-pricing-item {
  border-top: 1px solid var(--golden-ochre-light);
  padding: 1.6rem 0;
}

.graphic-pricing-item:last-child {
  border-bottom: 1px solid var(--golden-ochre-light);
}

.graphic-pricing-summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.graphic-pricing-summary::-webkit-details-marker {
  display: none;
}

.graphic-pricing-summary-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.graphic-pricing-heading {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted-brown);
}

.graphic-pricing-sub {
  font-size: 0.95rem;
  color: var(--editorial-soft);
}

/* PLUS / MINUS */
.graphic-pricing-summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--golden-ochre);
  opacity: 0.7;
}

.graphic-pricing-item[open] .graphic-pricing-summary::after {
  content: "–";
  opacity: 1;
}

/* CONTENT */
.graphic-pricing-content {
  margin-top: 1.4rem;
  max-width: 640px;
}

.graphic-pricing-content p {
  margin-top: 0;
}

.graphic-pricing-content ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
}

.graphic-pricing-content li {
  margin-bottom: 0.4rem;
}

/* SECONDARY */
.graphic-pricing-item--secondary {
  opacity: 0.95;
}

.graphic-pricing-note {
  font-size: 0.9rem;
  color: var(--editorial-soft);
  margin-top: 1rem;
}

@media (max-width: 768px) {

  /* Yleinen sivun sisäreunus */
  .graphic-pricing,
  .graphic-text-section,
  .graphic-text-intro,
  .full-width-section {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  /* Rajoitetaan tekstien leveys */
  .graphic-pricing-header,
  .graphic-text-section,
  .graphic-text-intro {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Intro-tekstin luettavuus */
  .graphic-pricing-header p {
    max-width: 38ch;
    margin-left: auto;
    margin-right: auto;
  }

  /* Accordion-rivit siisteiksi */
  .graphic-pricing-item {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    overflow: hidden;
  }

  /* Summary layout mobiiliin */
  .graphic-pricing-summary {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }

  .graphic-pricing-summary-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  /* Plus-ikoni pysyy oikeassa reunassa */
  .graphic-pricing-summary::after {
    margin-left: 1rem;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .pricing-section h2,
  .material-list {
    margin-top: 1rem;
		margin-bottom: 0;
    padding-top: 0px;
		padding-left: 0px;
		padding-right: 1rem;
		padding-bottom:0px;
    max-width: 100%;
  }
	
  .material-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
		
.material-list li strong {
    display: block;       
    text-align: left;      
    padding: 0 !important; 
    white-space: normal;  
    margin-top: 4px;
}
}

/* == NETTISIVUT == */
.web-hero {
  background-size: cover;
  background-position: 60% center;
  background-repeat: no-repeat;
  position: relative;
  padding: 160px 20px 140px;
  text-align: center;
  overflow: hidden;
}

/* Kevyt overlay */
.web-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(249, 243, 242, 0.88);
  backdrop-filter: blur(1px);
}

/* Sisältö */
.web-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.web-hero .lead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
/* Mobiili */
@media (max-width: 768px) {
  .web-hero {
    padding: 80px 20px;
    background-position: center;
  }

  .web-hero__inner {
    display: block !important;
    padding: 1.5rem 1rem !important;
  }

  .web-hero h1 {
    font-size: 2rem !important;
    line-height: 1.25;
    letter-spacing: 0.02em;
     margin-bottom: 1.2rem;
  }

  .web-hero .lead {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 95%;
    margin: 0 auto 1.8rem; /* väli ennen nappeja */
  }
}
		

/* == TOIMITUSEHDOT JA KÄYTÄNNÖT ==== */

.terms-hero {
  background-color: #f7eeec;
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 2px solid #b9955d;
}

.terms-hero .lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #2e2d2c;
  line-height: 1.8;
  font-family: var(--font-body);
}

.terms-section {
  padding: 5rem 2.5rem 5rem;
  max-width: 1150px;
  margin: 0 auto;
  border-top: 1px solid #b9955d; 
}

.terms-section h2 {
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 2.5rem;
}
		
.terms-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.terms-group {
  background-color: #faf7f3;
  border: 1px solid rgba(185,149,93,0.25);
  padding: 2.8rem 2.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-group:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.terms-group h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(185,149,93,0.4);
  padding-bottom: 0.5rem;
}

.terms-group ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.terms-group li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 1.1rem;
  color: #2e2d2c;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
}

.terms-group li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b9955d;
  font-size: 1.4rem;
  line-height: 1;
}

.terms-group li strong {
  color: #3a1460;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .terms-section {
    padding: 3.5rem 1.5rem;
  }
  .terms-group {
    padding: 2.2rem 1.8rem;
  }
}

/* ===== FAQ – */
.faq-terms {
  background-color: #f7eeec;
  padding: 4rem 2rem 5rem;
  border-top: 2px solid #b9955d;
  max-width: 1150px;
  margin: 0 auto;
}

.faq-terms h2 {
  color: #604573;
  font-family: var(--font-heading);
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}

/* --- Details + Summary --- */
.faq-list details {
  border-bottom: 1px solid rgba(185,149,93,0.25);
  padding: 0.75rem 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: #2e2d2c;
}

.faq-list summary:hover,
.faq-list summary:focus {
  color: #3a1460;
  outline: none;
}

/* --- FA ikonit --- */
.faq-list summary i {
  color: #6b7b58; /* tummempi sage (parempi kontrasti) */
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- Vastaukset --- */
.faq-list p {
  margin: 0.8rem 0 0 0.9rem;
  font-family: var(--font-body);
  line-height: 1.7;
  color: #2e2d2c;
}

/* --- Linkit --- */
.faq-list a {
  color: #604573;
  text-decoration: underline;
}
.faq-list a:hover {
  color: #b9955d;
}

/* --- Avattu tila --- */
.faq-list details[open] summary i {
  color: #b9955d; /* korostetaan kultaisella kun auki */
}

@media (max-width: 768px) {
  .faq-terms {
    padding: 3rem 1.5rem;
  }
  .faq-list summary {
    font-size: 1rem;
  }
}

/* ---- extrapalvelut -------- */

.services-main {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  font-family: var(--font-body);
  color: #3a1460;
  line-height: 1.6;
}
.services-main h1, .services-main h2 {
  font-family: var(--font-heading);
  margin-bottom: 0.5em;
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 2em;
  text-align: left;
}

.service-group {
  background: #f5f1eb;
  padding: 30px 24px;
  border-radius: 12px;
  margin-bottom: 40px;
  border: 1px solid #e8e1da;
}
.service-list {
  list-style: none;
  padding: 0;
}
.service-list li {
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '•';
  color: #b9955d;
  position: absolute;
  left: 0;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* Mobiili */
@media (max-width: 700px) {
  .lead { font-size: 1rem;}
  .service-group { padding: 22px 18px; }
  .cta-button { padding: 10px 20px; }
}


/* ==== OTSIKOT ==== */

/* yhteiset tyylit kaikille isoille otsikoille */
.section-heading {
  font-family: var(--font-heading);
  text-align: center;
  color: #3a1460; /* tumma violetti brändiväri */
  letter-spacing: 0.4px;
  position: relative;
  margin-bottom: 20px;
}

/* hienovarainen korostusviiva otsikon alle */
.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 18px auto 0;
}

/* responsiivisuus */
@media (max-width: 700px) {
  .section-heading {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  .section-heading::after {
    width: 55px;
  }
}

.cta-elevated {
  position: relative;
  background: #f9f8f7 url('https://jo-designs.net/wp-content/uploads/2025/10/marble_bg_soft_gold.jpg') center/cover no-repeat;
  text-align: center;
  padding: 120px 20px;
  border-top: 1px solid rgba(185,149,93,0.25);
  border-bottom: 1px solid rgba(185,149,93,0.25);
}

.cta-elevated::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-elevated h2 {
  font-family: var(--font-heading);
  color: #604573;
  margin-bottom: 1rem;
}

.cta-elevated p {
  font-family: var(--font-body);
  color: #333;
  margin-bottom: 2.5rem;
}

/* Mobiili */
@media (max-width: 768px) {
  .cta-elevated {
    padding: 80px 16px;
  }
  .cta-elevated h2 {
    font-size: 1.6rem;
  }
  .cta-elevated p {
    font-size: 1rem;
  }
}

.intro-section.fullwidth-bg {
  width: 100%;
  background-color: rgba(185, 149, 93, 0.05);
  border-top: 1px solid rgba(185, 149, 93, 0.3);
  border-bottom: 1px solid rgba(185, 149, 93, 0.3);
  padding: 3rem 1rem;
  margin: 0 auto;
}

.intro-magnolia {
  background-color: rgba(185, 149, 93, 0.05); /* hillitty golden ochre */
  border-top: 1px solid rgba(185, 149, 93, 0.3);
  border-bottom: 1px solid rgba(185, 149, 93, 0.3); /* kevyt kultainen alaraja */
  padding: 4rem 1.5rem;
}

.intro-wrap {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
  color: #3a2d3e;
	text-align: left;
}

.intro-wrap .web--eyebrow {
		text-align:center;
}

.intro-wrap p {
  font-family: var(--font-body);
  color: #3a2d3e;
  max-width: 1020px;
  margin: 0 auto 1rem;
  text-transform: none;
}

.intro-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: #b9955d;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  text-align: center;
}

.intro-wrap h2 {
  font-family: var(--font-heading);
  color: #604573;
  margin-bottom: 1.8rem;
  text-transform: none;
  position: relative;
 text-align: center;
	line-height: 1.5;
}

.intro-wrap h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #b9955d;
  margin: 0.8rem auto 0;
}

.process-section h2 {
  font-family: var(--font-heading);
  color: #604573;
  margin-bottom: 1.8rem;
  text-transform: none;
  position: relative;
	text-align: center;
}

.process-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #b9955d;
  margin: 0.8rem auto 0;
}

/* == MOBILE FIX == */
@media (max-width: 768px) {
  .intro-magnolia,
  .intro-section,
  .section-intro,
  .section-lead {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
    box-sizing: border-box;
  }

  .intro-magnolia p,
  .intro-section p,
  .section-lead p {
    max-width: 100%;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 auto 1.5rem;
  }

  .intro-magnolia h2,
  .intro-magnolia h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    word-break: break-word;
    text-align: center;
  }
}

/* Viestinnän kumppani process */

.brand-process {
  padding: 60px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.brand-process .section-heading {
  font-family: var(--font-heading);
  color: #3a1460;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.brand-process-intro {
  font-family: var(--font-body);
  color: #444;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* --- Numerolistaus, yhteinen tyyli kaikille --- */
.brand-steps {
  list-style: none;
  counter-reset: brandstep;
  margin: 1rem auto;
  padding-left: 4rem;
  max-width: 900px;
  width: 100%;
}

.brand-steps li {
  counter-increment: brandstep;
  position: relative;
  margin-bottom: 2.2rem;
  padding-left: 60px;
  font-family: var(--font-body);
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
}

.brand-steps li::before {
  content: counter(brandstep);
  position: absolute;
  left: 0;
  top: 0.2rem;
  background-color: #b7c5a6; /* Sage */
  color: #fff;
  font-size: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-steps strong {
  color: #3a1460;
  font-weight: 600;
}

@media (max-width: 600px) {
  .brand-steps {
    padding-left: 3.5rem;  /* yhtenäinen sisennys */
    max-width: 100%;
  }

  .brand-steps li {
    padding-left: 3.5rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
  }

  .brand-steps li::before {
    content: counter(brandstep);  /* korjattu counter */
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--golden-ochre);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  /* Yleinen asettelu: sisällöt täyteen leveyteen */
  #brand-packages,
  .web-mini-grid,
  .web-mini-card,
  #brand-strategy {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  /* Process grid ja kortit mobiilissa pystysuoraan */
  .process-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-card {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  /* Estä liian leveät paddaukset ja rivien venyminen */
  .panel-row-style,
  .panel-grid,
  .panel-grid-cell {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }
}

/* == JOHANNA-SIVU (AUTHOR STYLE) === */

/* --- Hero --- */
.author-hero {
  background-color: #f5f1eb;
  background-image: url('https://jo-designs.net/wp-content/uploads/2025/10/sketchbook-near-laptop-coffee.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  padding: 7rem 2rem;
  color: #3a1460;
}
.author-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(245, 241, 235, 0.7),
    rgba(185, 149, 93, 0.25)   /* Golden Ochre */
  );
  z-index: 0;
}
.author-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: rgba(245, 241, 235, 0.55); /* pehmeä kerma overlay */
  backdrop-filter: blur(4px);
  border-radius: 0;
}

.author-hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9955d;
  margin-bottom: 1.2rem;
}
.author-hero__lead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  margin: 0 auto 2.5rem;
  max-width: 700px;
}
.author-hero__cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
}

/* --- CTA --- */
.author-cta {
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.author-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(183,197,166,0.45); /* lempeä vihreä */
  mix-blend-mode: multiply; /* antaa valon ja kuvan näkyä */
  z-index: 0;
}

.author-cta > * { position: relative; z-index: 1; }

.author-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  margin-bottom: 1rem;
	color: var(--deep-olive);
}
.author-cta p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25); /* kevyt varjo */
}

/* ====== ABOUT SPLIT (Johanna intro) ====== */
.about-split {
  background-color: #f5f1eb;
  padding: 4rem 1.5rem;
}
.about-split__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  max-width: 1150px;
  margin: 0 auto;
}
.about-split__media img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border: none;
  display: block;
}
.about-card {
  flex: 1 1 480px;
  text-align: left;
}
.about-card .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #9cad8b;
  display: block;
  margin-bottom: 0.6rem;
}
.about-card h2 {
  color: #9cad8b;
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.about-card p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.about-divider {
  width: 70px;
  height: 2px;
  background-color: #b9955d;
  margin: 2rem 0 1.8rem 0;
}

/* ====== INFO SECTION (Koulutus + Työtapa + Arvot) ====== */
.about-info-section {
  background-color: #f7eeec; /* vaalea canyon rose -tausta */
  padding: 5rem 1.5rem;
  border-top: 2px solid #b9955d; /* Golden Ochre divider */
}

.about-info__inner {
  max-width: 1150px;
  margin: 0 auto;
}

.about-info__intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-info__intro h2 {
  color: #604573; /* violetti otsikko */
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.about-info__intro p {
  color: #333;
  line-height: 1.7;
}

.about-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Kortit */
.info-card {
  background: #faf7f3; /* lempeä hiekan sävy */
  border: 1px solid rgba(185,149,93,0.25);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  padding: 2.4rem 2rem;
  text-align: left;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.4s ease;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
}

/* Fade-in animaatio */
@keyframes fadeInUpCard {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Aktivointi kun näkyy */
.info-card.fade-in {
  animation: fadeInUpCard 1s ease forwards;
}

/* Hover-efekti */
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.07);
  border-color: rgba(185,149,93,0.5);
}

/* Ikonit keskelle */
.info-card i {
  color: #9cad8b;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: color 0.3s ease;
}

.info-card:hover i {
  color: #b9955d; /* Golden Ochre hover */
}

.info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 1.4rem auto;
  border-radius: 50%;
  background-color: rgba(183,197,166,0.25); /* Sage Brush, 25 % opacity */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.info-card:hover .info-icon {
  background-color: rgba(185,149,93,0.25); /* Golden Ochre hover */
  transform: scale(1.05);
}

.info-icon i {
  color: #9cad8b;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.info-card:hover .info-icon i {
  color: #b9955d;
}

/* Otsikot */
.info-card h3 {
  color: #604573; /* violetti vain otsikoihin */
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(185,149,93,0.3);
  padding-bottom: 0.5rem;
}

/* Tekstit */
.info-card p,
.info-card ul li {
  color: #2e2d2c; /* lämmin tumma harmaa */
}

.info-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
}

.info-card ul li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
}

.info-card ul li::before {
  content: "•";
  color: #b9955d; /* Golden Ochre bullet */
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  top: 0.1rem;
}

.info-card .quote {
  font-style: italic;
  color: #3b3b3b;
  font-weight: 500;
  margin-top: 1rem;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsiivisuus */
@media (max-width: 768px) {
  .about-info__grid {
    grid-template-columns: 1fr;
  }
  .info-card {
    text-align: left;
  }
}

/* Responsiivisuus */
@media (max-width: 768px) {
  .about-split__inner { flex-direction: column; text-align: left; }
  .about-info__intro { text-align: center; margin: 0 auto 2.5rem; }
}

/* ===== CONTACT HERO ===== */
.contact-hero {
  background-color: #f5f1eb;
  background-image: url('https://jo-designs.net/wp-content/uploads/2025/09/modern-office-desk-composition-with-technological-device-scaled-e1758837180328.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  padding: 7rem 2rem;
  color: #3a1460;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(243,246,241,0.85); /* vaalea sage overlay */
  z-index: 1;
}

.contact-hero__inner {
  position: relative;
  z-index: 2; /* varmistaa, että teksti tulee overlayn päälle */
  max-width: 850px; /* rajoittaa tekstialueen leveyttä */
  margin: 0 auto; /* keskittää sisällön */
  padding: 0 1.5rem; /* lisää hieman hengitystilaa reunoille */
  box-sizing: border-box;
}

.contact-hero__lead {
  font-family: var(--font-body);
  color: #2e2d2c;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

/* --- Responsiivisuus --- */
@media (max-width: 768px) {
  .contact-hero {
    padding: 4rem 1.5rem 3rem;
    text-align: left;
  }
  .contact-hero h1 {
    font-size: 1.7rem;
  }
  .contact-hero__lead {
    font-size: 1.05rem;
  }
}

.contact-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.contact-section {
  background-color: #f8f7f4;
  padding: 6rem 2rem;
  text-align: left;
}

.contact-section .contact-inner {
  max-width: 900px; /* määrää sisältöalueen leveyden */
  margin: 0 auto;   /* keskittää koko sisällön */
}

/* Otsikko ja tekstit */
.contact-section .contact-heading {
  font-family: var(--font-heading);
  color: #604573;
  border-bottom: 2px solid #b9955d;
  display: inline-block;
  margin-bottom: 2rem;
}

.contact-section p {
  font-family: var(--font-body);
  color: #2e2d2c;
  margin-bottom: 1.5rem;
}

/* WPForms */
.contact-form {
  margin-top: 2.5rem;
}

/* Kentät leveämmiksi ja harmonisiksi */
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(96,69,115,0.15);
  background-color: #eef1ec; /* haalea Sage Brush */
  color: #2e2d2c;
  font-family: var(--font-body);
  border-radius: 0;
  transition: all 0.3s ease;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus,
.wpforms-field select:focus {
  border-color: #b7c5a6;
  background-color: #e9ece7;
  box-shadow: 0 0 0 3px rgba(183,197,166,0.25);
  outline: none;
}

.wpforms-submit {
  background-color: #b7c5a6;
  color: #fff;
  border: none;
  padding: 14px 38px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpforms-submit:hover {
  background-color: #9fae8f;
}

/* Mobiilissa */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 1.5rem;
  }
  .contact-section .contact-inner {
    max-width: 100%;
  }
}

.availability-note {
  background-color: #f3f6f1; /* todella vaalea sage */
  border-left: 4px solid #b7c5a6; /* sage brush */
  padding: 1.5rem 1rem;
  margin: 3rem auto;
  max-width: 1020px;
  text-align: left;
  font-family: var(--font-body);
  color: #2e2d2c;
  line-height: 1.8;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.availability-note i {
  color: #a8b998; /* tummempi sage ikoni */
  font-size: 1.2rem;
  margin-right: 0.4rem;
}

.availability-note p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.availability-note strong {
  color: #6C6642;
  font-weight: 500;
}

/* --- Nappi --- */
.availability-note .btn--sage {
  display: inline-block;
  margin: 1.5rem auto 0 auto; /* keskitys ja vähän yläväliä */
  background-color: #b9955d;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
}

.availability-note .btn--sage:hover {
  background-color: #a47e3c;
}

/* --- Mobiilille --- */
@media (max-width: 768px) {
  .availability-note {
    padding: 2rem 1.4rem;
    text-align: left;
  }
}
.sparraus-cta-intro {
  text-align: center;
  font-family: var(--font-body);
  color: var(--muted-brown);
  max-width: 720px;
  margin: 1.5rem auto 1rem;
  line-height: 1.6;
}
.sparraus-intro {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  color: var(--muted-brown);
}

.sparraus-intro p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
  color: var(--muted-brown);
}

.sparraus-cta-btn {
  display: inline-block;
  background-color: var(--golden-ochre);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.sparraus-cta-btn:hover {
  background-color: var(--muted-brown);
  color: #fff;
}

.sparraus-cta-wrapper {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.sparraus-cta {
   display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1.5rem;
}

.sparraus-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(219, 175, 156, 0.35); /* canyon rose 35% */
  z-index: 1;
  transition: opacity 0.5s ease;
}

.sparraus-cta:hover::before {
  opacity: 0.45;
}

.sparraus-cta-box {
  position: relative;
	margin: 0 auto 4rem auto;
  z-index: 2;
  background: #fff;
  padding: 3rem 3.5rem;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border: none;
}

.sparraus-cta-box h2 {
  font-family: var(--font-heading);
  color: var(--color-violet);
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.35;
  margin-bottom: 1.8rem;
}

.sparraus-cta-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sparraus-cta-links li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.sparraus-cta-links li:first-child {
  border-top: none;
}

.sparraus-cta-links a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-violet);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover-efekti: lämmin, pehmeä kontrasti */
.sparraus-cta-links a:hover,
.sparraus-cta-links a:focus {
  background-color: rgba(219, 175, 156, 0.12); /* haalea canyon rose */
  color: var(--muted-brown);
  letter-spacing: 0.06em;
}

/* Pieni kultainen alleviiva hoverissa (lisätyylikkyys) */
.sparraus-cta-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--muted-brown);
  transition: width 0.3s ease;
}

.sparraus-cta-links a:hover::after {
  width: 100%;
}

/* Mobiiliversio */
@media (max-width: 768px) {
  .sparraus-cta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
  }

  .sparraus-cta-box {
    max-width: 100%;
    padding: 2rem 1.5rem;
    box-shadow: none;
  }

  .sparraus-cta-links a {
    font-size: 1rem;
  }
}

/* ===================================
   FIX: Viestintä Chrome vs Firefox layout-ero
   =================================== */
.page-id-4611 .panel-grid,
.page-id-4611 .panel-grid-cell {
  max-width: none;
}

.page-id-4611 .service-editorial {
  max-width: 920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
}

/* ============================
