/* ====    Sivukohtaiset tyylit ========== */

.brand-hero {
  background-image: url('https://studiosumen.fi/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: 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 {
  margin-bottom: 1rem;
}

.brand-hero .lead {
  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);
  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(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 {
    padding: 40px 20px;
    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;
}

/* Numero */
.palvelut-prosessi-steps .numero {
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest-green);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50%;
}

/* Otsikot */
.palvelut-prosessi-steps strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--navy);
}

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

.marketing-hero {
  background-image: url('https://studiosumen.fi/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 --- */

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

.subtle {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.pricing-section h2,
.includes-section h2,
.material-notes h2 {
  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;   
  margin-top: 0.6rem;
}

.material-list,
.includes-list {
  list-style: none;
  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;
  line-height: 1.75;
}

/* --- 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 {
  font-weight: 600;
  white-space: nowrap;
  padding: 0 1rem !important;
  transition: color 0.4s ease;
}

/* --- 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;
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;
  line-height: 1;
	content: "";
}


@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;
 }
}

/* --- Pricing note: tiivistetty "Mitä hintaan sisältyy" -teksti --- */
.pricing-note {
  max-width: 900px;
  margin: 2rem auto 3rem;
  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: 1rem 0;
  align-items: center;
}

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

.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;
}

.service-pricing {
    margin: 2rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-heading);
}

/* ===== 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;
    }
}
/* ==    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 {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.graphic-pricing-content li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;

  padding: 0.5rem 0;
  margin-bottom: 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.graphic-pricing-content li:last-child {
  border-bottom: none;
}

.graphic-pricing-content li strong {
  white-space: nowrap;
  font-weight: 600;
  color: var(--color-heading);
}

/* 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: grid !important;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: start;
    padding: 1rem 0;
  }

  .graphic-pricing-summary-text {
    min-width: 0;
    gap: 0.25rem;
  }

  .graphic-pricing-summary::after {
    margin-left: 0;
    flex-shrink: 0;
  }

  /* Hinnastorivit mobiilissa */
  .graphic-pricing-content li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .graphic-pricing-content li strong {
    display: block;
    white-space: normal;
    margin-top: 0;
  }
}


/* == 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 {
  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 {
    line-height: 1.25;
    letter-spacing: 0.02em;
     margin-bottom: 1.2rem;
  }

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

.stretched-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-indent: -9999px;
    overflow: hidden;
}

/* == 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;
}

.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;
  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;
  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 {
  text-align: center;
  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 {
  padding: 4rem 1.5rem;
}

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

.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;
  margin-bottom: 1rem;
  text-align: center;
}

.intro-wrap h2 {
  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;
  margin: 0.8rem auto 0;
}

.process-section h2 {
  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 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.brand-process-intro {
  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;
  line-height: 1.7;
}

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

.brand-steps strong {
  font-weight: 600;
}

@media (max-width: 600px) {
  .brand-steps {
    padding-left: 3.5rem; 
    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);
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  #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;
  }
}

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

/* --- Hero --- */
.author-hero {
  background-color: #f5f1eb;
  background-image: url('https://studiosumen.fi/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);
  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 {
  line-height: 1.7;
  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);
  mix-blend-mode: multiply;
  z-index: 0;
}

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

.author-cta h2 {
  margin-bottom: 1rem;
}
.author-cta p {
  margin-bottom: 2rem;
}

/* ====== 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 {
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
}
.about-card h2 {
  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;
}

/* 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://studiosumen.fi/wp-content/uploads/2025/09/modern-office-desk-composition-with-technological-device-scaled-e1758837180328.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  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);
  z-index: 1;
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto; 
  padding: 0 1.5rem;
  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-section {
  background-color: #f8f7f4;
  padding: 6rem 2rem;
  text-align: left;
}

.contact-section .contact-inner {
  max-width: 900px; 
  margin: 0 auto;   
}

/* Otsikko ja tekstit */
.contact-section .contact-heading {
  display: inline-block;
  margin-bottom: 2rem;
}

.contact-section p {
  margin-bottom: 1.5rem;
}

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

.contact-section .wpforms-field input,
.contact-section .wpforms-field textarea,
.contact-section .wpforms-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(96,69,115,0.15);
  background-color: #eef1ec; /* haalea Sage Brush */
  border-radius: 0;
  transition: all 0.3s ease;
}

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

.contact-section .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;
}

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

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

/* ===================================
   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;
}

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