/* ═══════════════════════════════════════════════
   Navigator Samtalsterapi – Delad stilmall
   ═══════════════════════════════════════════════ */

:root {
  --plum:       #592D41;
  --plum-dk:    #3E1F2E;
  --plum-hover: #9B6E82;
  --lavender:   #DDD0D7;
  --gold:       #AA7D4F;
  --gold-lt:    #C9A06E;
  --cream:      #FCF3ED;
  --cream-dk:   #F0E4D8;
  --white:      #FFFAF7;
  --text:       #2E1A23;
  --text-mid:   #5A4050;
  --nav-h:      72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Noto Serif', serif;
  font-style: italic;
  font-weight: 600;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Noto Sans', sans-serif;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 3rem;
  padding: .75rem 2rem;
  cursor: pointer;
  transition: background .25s, color .25s, box-shadow .25s;
  border: none;
}
.btn-plum    { background: var(--plum);   color: var(--cream); }
.btn-plum:hover  { background: var(--plum-hover); box-shadow: 0 4px 20px rgba(155,110,130,.35); }
.btn-gold    { background: var(--gold);   color: #fff; }
.btn-gold:hover  { background: var(--gold-lt); }
.btn-outline { border: 1.5px solid var(--plum); color: var(--plum); background: transparent; }
.btn-outline:hover { background: var(--plum-hover); color: var(--cream); border-color: var(--plum-hover); }
.btn-cream   { background: var(--cream);  color: var(--plum); }
.btn-cream:hover { background: #fff; box-shadow: 0 4px 16px rgba(89,45,65,.15); }
.btn-lg { padding: .9rem 2.4rem; font-size: .8rem; }

/* ── EYEBROW ── */
.eyebrow {
  font-family: 'Noto Sans', sans-serif;
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1rem;
}

/* ── SECTION HEADER ── */
.sec-hd { margin-bottom: 3.5rem; }
.sec-hd h2 { font-size: 2.4rem; color: var(--plum); line-height: 1.2; margin-top: .4rem; }
.sec-hd.centered { text-align: center; }
.sec-hd.centered h2::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem auto 0;
}
.sec-hd:not(.centered) h2::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0 0;
}

/* ── DOT DECORATIONS – kundens diagonala prick-rad ── */
/*
  Använd klassen .dots-diagonal i HTML, t ex:
  <svg class="dots-diagonal" ...>
  Mönster: 8 prickar längs en diagonal, liten → stor (nedre vänster → övre höger)
  Färg: --plum på ljus bakgrund
*/
.dot-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem;
  height: var(--nav-h);
  background: rgba(252,243,237,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(89,45,65,.1);
  transition: box-shadow .3s;
}
nav#nav.scrolled { box-shadow: 0 2px 24px rgba(89,45,65,.12); }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 60px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  text-decoration: none; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-mid);
  transition: color .2s; font-weight: 400;
  display: flex; align-items: center; gap: .3rem;
  padding: .4rem 0; white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--plum); }

.has-dropdown > a::after {
  content: ''; display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px; transition: transform .2s;
}
.has-dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 0;
  /* Osynlig padding-top skapar en "bro" så musen inte lämnar hover-ytan */
  padding-top: .75rem;
  min-width: 230px;
  opacity: 0; pointer-events: none; transform: translateY(4px);
  transition: opacity .2s, transform .2s;
  z-index: 600;
}
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }

/* Själva dropdown-panelen inuti .dropdown */
.dropdown-inner {
  background: var(--white); border: 1px solid rgba(89,45,65,.1);
  border-radius: 12px; padding: .6rem 0;
  box-shadow: 0 12px 40px rgba(89,45,65,.14);
}
.dropdown a {
  display: block; padding: .6rem 1.3rem;
  text-decoration: none; font-size: .78rem; color: var(--text-mid);
  transition: background .15s, color .15s; letter-spacing: .03em; white-space: nowrap;
}
.dropdown a:hover { background: var(--cream); color: var(--plum); }

.nav-cta {
  background: var(--plum) !important;
  color: var(--cream) !important;
  padding: .65rem 2.2rem !important;
  border-radius: 3rem !important;
  font-size: .75rem !important;
  letter-spacing: .1em !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}
.nav-cta:hover { background: var(--plum-hover) !important; color: var(--cream) !important; }

/* ── PAGE HERO (undersidor) ── */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 5rem 5rem;
}
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--plum); line-height: 1.2; margin-top: .5rem; }
.page-hero p {
  font-size: 1.05rem; color: var(--text-mid);
  margin-top: 1.2rem; max-width: 50ch; line-height: 1.75;
}
/* .page-hero-dots – används ej (bakgrundsbild istället) */

/* ── PACKAGE CARD ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.pkg-card {
  background: var(--white);
  border: 1px solid rgba(89,45,65,.09);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(89,45,65,.1);
  border-color: rgba(89,45,65,.2);
}
.pkg-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--gold));
  border-radius: 16px 16px 0 0;
}
.pkg-card.featured { background: var(--plum); color: var(--cream); border-color: transparent; }
.pkg-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
.pkg-card.featured h3,
.pkg-card.featured .pkg-price,
.pkg-card.featured .pkg-sessions { color: var(--cream); }
.pkg-card.featured p { color: rgba(252,243,237,.8); }
.pkg-card.featured .pkg-includes li { color: rgba(252,243,237,.75); }
.pkg-card.featured .pkg-includes li::before { color: var(--gold-lt); }

.pkg-icon {
  width: 48px; height: 48px; background: var(--cream);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem; color: var(--gold);
}
.pkg-card.featured .pkg-icon { background: rgba(252,243,237,.15); color: var(--gold-lt); }

.pkg-card h3 { font-size: 1.45rem; color: var(--plum); margin-bottom: .5rem; }
.pkg-sessions {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
}
.pkg-card p { font-size: .93rem; color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.7; }

.pkg-includes { list-style: none; margin-bottom: 2rem; }
.pkg-includes li {
  font-size: .87rem; color: var(--text-mid);
  padding: .3rem 0; display: flex; align-items: flex-start; gap: .6rem;
}
.pkg-includes li::before {
  content: '✦';
  color: var(--gold); font-size: .7rem; flex-shrink: 0; margin-top: .3rem;
}

.pkg-price {
  font-family: 'Noto Serif', serif;
  font-style: italic; font-size: 1.7rem; font-weight: 600;
  color: var(--plum); margin-bottom: 1.5rem; display: block;
}
.pkg-price span { font-size: .75rem; font-style: normal; opacity: .6; margin-left: .25rem; }

.pkg-decor {
  position: absolute; bottom: -24px; right: -24px;
  width: 100px; height: 100px; border-radius: 50%;
  border: 1.5px dashed rgba(89,45,65,.1);
}

/* ── INTRO TEXT SECTION ── */
.intro-block {
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-block.reverse { direction: rtl; }
.intro-block.reverse > * { direction: ltr; }
.intro-block-text h2 { font-size: 2.2rem; color: var(--plum); margin-bottom: 1.25rem; }
.intro-block-text p { color: var(--text-mid); margin-bottom: 1rem; }
.intro-block-text .btn { margin-top: 1.5rem; }
.intro-block-visual {
  background: var(--lavender);
  border-radius: 16px;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.intro-block-visual svg { opacity: .2; }

/* ── SERVICES SECTION ── */
.services-section { padding: 6rem 5rem; background: var(--cream); }
.services-section.white { background: var(--white); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--plum);
  padding: 5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before { display: none; }
.cta-band::after  { display: none; }
.cta-band h2 { font-size: 2.2rem; color: var(--cream); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-band p { color: rgba(252,243,237,.75); max-width: 52ch; margin: 0 auto 2rem; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* ── CONTACT FORM ── */
.contact-wrap {
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h2 { font-size: 2.2rem; color: var(--plum); margin-bottom: 1.25rem; }
.contact-info p { color: var(--text-mid); margin-bottom: 1rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-top: 1.75rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--cream);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--gold); flex-shrink: 0;
}
.contact-detail-text p:first-child { font-weight: 500; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--plum); margin-bottom: .1rem; }
.contact-detail-text p:last-child { font-size: .92rem; color: var(--text-mid); }

.form-card {
  background: var(--white);
  border: 1px solid rgba(89,45,65,.1);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(89,45,65,.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-mid); font-weight: 500;
}
.form-group label .req { color: var(--gold); margin-left: .2rem; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Noto Sans', sans-serif;
  font-size: .93rem; color: var(--text);
  background: var(--cream);
  border: 1.5px solid rgba(89,45,65,.12);
  border-radius: 10px;
  padding: .75rem 1rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(89,45,65,.08);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23592D41' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: .5rem; width: 100%; text-align: center; }
.btn-submit {
  width: 100%; padding: .95rem; font-size: .8rem;
  background: var(--plum); color: var(--cream);
  border: none; border-radius: 3rem; cursor: pointer;
  font-family: 'Noto Sans', sans-serif; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 500;
  transition: background .25s, box-shadow .25s;
}
.btn-submit:hover { background: var(--plum-hover); box-shadow: 0 4px 20px rgba(155,110,130,.35); }

/* ── FOOTER ── */
footer#footer {
  background: var(--plum-dk);
  color: var(--cream);
  padding: 5rem 5rem 2.5rem;
}
.foot-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 4rem;
  margin-bottom: 3.5rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(252,243,237,.1);
}
.foot-logo img { height: 56px; width: auto; opacity: .9; margin-bottom: 1rem; }
.foot-tagline {
  font-family: 'Noto Serif', serif; font-style: italic; font-weight: 300;
  font-size: 1.05rem; color: var(--lavender); opacity: .7; margin-bottom: 1rem;
}
.foot-brand p { font-size: .85rem; opacity: .85; max-width: 26ch; line-height: 1.7; }
footer h4 { font-family: 'Noto Sans', sans-serif; font-style: normal; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1.25rem; font-weight: 500; }
footer ul { list-style: none; }
footer ul li + li { margin-top: .6rem; }
footer ul a { text-decoration: none; color: var(--cream); opacity: .55; font-size: .87rem; transition: opacity .2s, color .2s; }
footer ul a:hover { opacity: 1; color: var(--gold-lt); }
.foot-email {
  color: rgba(252,243,237,.85);
  text-decoration: none;
  font-size: .87rem;
  transition: color .2s;
}
.foot-email:hover { color: var(--gold-lt); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; font-size: .72rem; opacity: .35; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HERO HOME ── */
.hero-home {
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 3.5rem 6rem 5rem;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.hero-eyebrow {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem; font-weight: 400;
  opacity: 0; animation: fadeUp .7s .15s forwards;
}
.hero-title {
  font-family: 'Noto Serif', serif; font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600; font-style: italic; line-height: 1.2;
  color: var(--plum); margin-bottom: 1.25rem;
  opacity: 0; animation: fadeUp .7s .3s forwards;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-family: 'Noto Serif', serif; font-style: italic; font-weight: 300;
  font-size: 1.1rem; color: var(--text-mid); max-width: 44ch; line-height: 1.7;
  opacity: 0; animation: fadeUp .7s .45s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem;
  opacity: 0; animation: fadeUp .7s .58s forwards;
}
.hero-tagline {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(89,45,65,.15);
  font-family: 'Noto Serif', serif; font-style: italic; font-weight: 300;
  font-size: 1.05rem; color: var(--gold); letter-spacing: .02em;
  opacity: 0; animation: fadeUp .7s .72s forwards;
}
.hero-right {
  position: relative; overflow: hidden;
  opacity: 0; animation: fadeIn 1s .2s forwards;
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.hero-photo-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--lavender) 0%, #c8b5be 40%, var(--plum) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  color: rgba(255,255,255,.55); text-align: center; padding: 2rem;
}
.hero-photo-placeholder svg { opacity: .4; }
.hero-photo-placeholder p { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; line-height: 1.6; max-width: 22ch; }
.hero-right::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, rgba(252,243,237,.28) 0%, transparent 20%);
  z-index: 1;
}

/* ── INTRO / ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; }
.about-img {
  background: var(--lavender); position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center; justify-content: center;
}
.about-img-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: .15; }
.about-badge {
  background: var(--gold); color: #fff; border-radius: 50%;
  width: 140px; height: 140px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; font-size: .62rem; letter-spacing: .08em;
  text-transform: uppercase; line-height: 1.4; padding: 1rem; font-weight: 500;
  position: relative; z-index: 3;
  box-shadow: 0 8px 32px rgba(170,125,79,.35);
}
.about-badge strong {
  font-family: 'Noto Serif', serif; font-size: 1.2rem; font-weight: 600;
  font-style: italic; display: block; text-transform: none; letter-spacing: 0;
}
.about-text {
  background: var(--white); padding: 5rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text h2 { font-size: 2.4rem; color: var(--plum); margin-bottom: 1.5rem; }
.about-text p { color: var(--text-mid); margin-bottom: 1rem; }
.about-text p strong { color: var(--plum); font-weight: 600; }

/* ── PROCESS ── */
.process-section { padding: 6rem 5rem; background: var(--white); }
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 4rem; }
.proc-step { padding-top: 1.5rem; border-top: 2px solid var(--lavender); }
.proc-step.hi { border-top-color: var(--gold); }
.proc-num { font-family: 'Noto Serif', serif; font-size: 3.5rem; font-weight: 300; font-style: italic; color: var(--lavender); line-height: 1; margin-bottom: 1rem; }
.proc-step.hi .proc-num { color: var(--gold); opacity: .55; }
.proc-step h3 { font-size: 1.35rem; color: var(--plum); margin-bottom: .6rem; }
.proc-step p { font-size: .92rem; color: var(--text-mid); }

/* ── LOCATION BANNER ── */
.loc-banner {
  background: var(--lavender); padding: 3rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.loc-text { font-family: 'Noto Serif', serif; font-style: italic; font-size: 1.5rem; font-weight: 400; color: var(--plum); }
.loc-text span { color: var(--gold); }
.loc-meta { display: flex; gap: 2.5rem; }
.loc-item { text-align: center; }
.loc-item .ico { font-size: 1.2rem; margin-bottom: .25rem; }
.loc-item p { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--plum); font-weight: 500; opacity: .7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav#nav { padding: 0 2rem; }
  .nav-links { gap: 1.25rem; }
}
@media (max-width: 960px) {
  nav#nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-home { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 55vw; }
  .hero-left { padding: 4rem 2rem 5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { min-height: 260px; }
  .about-text, .services-section, .process-section, .loc-banner, .cta-band, .contact-wrap { padding-left: 2rem; padding-right: 2rem; }
  .intro-block { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 2rem; }
  .intro-block.reverse { direction: ltr; }
  .proc-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .foot-top { grid-template-columns: 1fr; gap: 2rem; }
  footer#footer { padding: 3.5rem 2rem 2rem; }
  .page-hero-inner { padding: 4rem 2rem; }
  /* .page-hero-dots – används ej (bakgrundsbild istället) */
  .form-row { grid-template-columns: 1fr; }
}

/* ── PRIVATPERSONER LANDNING ── */
.pp-intro {
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--white);
}
.pp-intro-text h2 { font-size: 2.2rem; color: var(--plum); margin-bottom: 1.25rem; }
.pp-intro-text p  { color: var(--text-mid); margin-bottom: 1rem; }
.pp-single {
  background: var(--lavender);
  padding: 4rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.pp-single-text h2 { font-size: 1.9rem; color: var(--plum); margin-bottom: .75rem; }
.pp-single-text p  { color: var(--text-mid); font-size: .95rem; }
.pp-single-price {
  font-family: 'Noto Serif', serif; font-style: italic;
  font-size: 2rem; color: var(--plum); white-space: nowrap;
}
.pp-single-price span {
  display: block; font-size: .75rem; font-style: normal;
  color: var(--text-mid); margin-top: .2rem; letter-spacing: .08em;
}

/* ── FÖRETAG LANDNING ── */
.ft-intro {
  padding: 6rem 5rem; display: grid;
  grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; background: var(--white);
}
.ft-intro-text h2 { font-size: 2.2rem; color: var(--plum); margin-bottom: 1.25rem; }
.ft-intro-text p  { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8; }
.ft-services { padding: 6rem 5rem; background: var(--cream); }
.ft-service-card {
  background: var(--white); border-radius: 16px; padding: 2.5rem;
  border: 1px solid rgba(89,45,65,.09);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.ft-service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(89,45,65,.1); }
.ft-service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--gold));
  border-radius: 16px 16px 0 0;
}
.ft-service-icon {
  width: 48px; height: 48px; background: var(--cream);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--gold); margin-bottom: 1.25rem;
}
.ft-service-card h3 { font-size: 1.4rem; color: var(--plum); margin-bottom: .6rem; }
.ft-service-card p  { color: var(--text-mid); font-size: .93rem; line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.ft-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.ft-how { padding: 5rem 5rem; background: var(--white); }
.ft-how h2 { font-size: 2rem; color: var(--plum); margin-bottom: 2rem; }
.ft-how-list { list-style: none; }
.ft-how-list li { color: var(--text-mid); padding: .4rem 0; display: flex; gap: .75rem; font-size: .95rem; }
.ft-how-list li::before { content: '–'; color: var(--plum); flex-shrink: 0; }

/* ── PAKETSIDA ── */
.pkg-detail {
  padding: 6rem 5rem; display: grid;
  grid-template-columns: 1.2fr 1fr; gap: 6rem;
  align-items: start; background: var(--white);
}
.pkg-detail-text h2 { font-size: 2.2rem; color: var(--plum); margin-bottom: 1.25rem; }
.pkg-detail-text h3 { font-size: 1.3rem; color: var(--plum); margin: 2rem 0 .75rem; }
.pkg-detail-text p  { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8; }
.pkg-detail-list { list-style: none; margin-bottom: 1.5rem; }
.pkg-detail-list li { color: var(--text-mid); padding: .35rem 0; display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; }
.pkg-detail-list li::before { content: '✦'; color: var(--gold); font-size: .7rem; flex-shrink: 0; margin-top: .35rem; }
.pkg-detail-list.dashes li::before { content: '–'; color: var(--plum); font-size: 1rem; margin-top: .1rem; }
.pkg-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); }
.pkg-summary-card { background: var(--cream); border-radius: 16px; padding: 2.5rem; border: 1px solid rgba(89,45,65,.1); }
.pkg-summary-card h3 { font-size: 1.35rem; color: var(--plum); margin-bottom: 1.5rem; }
.pkg-summary-row { display: flex; justify-content: space-between; align-items: baseline; padding: .75rem 0; border-bottom: 1px solid rgba(89,45,65,.08); font-size: .9rem; color: var(--text-mid); gap: 1rem; }
.pkg-summary-row:last-of-type { border-bottom: none; }
.pkg-summary-row strong { color: var(--plum); font-weight: 500; text-align: right; }
.pkg-summary-price { font-family: 'Noto Serif', serif; font-style: italic; font-size: 2.2rem; color: var(--plum); margin: 1.5rem 0 .25rem; }
.pkg-summary-price-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 1.75rem; }
.pkg-price-block { margin: 1.5rem 0; }
.pkg-price-item { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid rgba(89,45,65,.06); font-size: .9rem; color: var(--text-mid); }
.pkg-price-item:last-child { border-bottom: none; }
.pkg-price-item strong { color: var(--plum); font-weight: 600; }

/* ── OM MIG ── */
.om-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; padding: 6rem 5rem; align-items: start; }
.om-photo { position: sticky; top: calc(var(--nav-h) + 2rem); }
.om-photo-frame { background: var(--lavender); border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; aspect-ratio: 3/4; overflow: hidden; position: relative; }
.om-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.om-text h2 { font-size: 2rem; color: var(--plum); margin-bottom: 1.25rem; margin-top: 2.5rem; }
.om-text h2:first-of-type { margin-top: 0; }
.om-text p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8; }
.om-text p strong { color: var(--plum); font-weight: 600; }
.om-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.om-value { background: var(--cream); border-radius: 12px; padding: 1.25rem; border: 1px solid rgba(89,45,65,.08); }
.om-value h4 { font-size: 1rem; color: var(--plum); margin-bottom: .4rem; }
.om-value p  { font-size: .85rem; color: var(--text-mid); line-height: 1.6; margin: 0; }
.om-credentials { background: var(--cream); border-radius: 16px; padding: 2rem; margin: 1.75rem 0; border: 1px solid rgba(89,45,65,.08); }
.om-credentials h3 { font-size: 1.1rem; color: var(--plum); margin-bottom: 1.25rem; }
.om-credentials ul { list-style: none; }
.om-credentials li { display: flex; gap: .75rem; align-items: flex-start; padding: .5rem 0; border-bottom: 1px solid rgba(89,45,65,.06); font-size: .92rem; color: var(--text-mid); }
.om-credentials li:last-child { border-bottom: none; }
.om-credentials li::before { content: '✦'; color: var(--gold); font-size: .7rem; flex-shrink: 0; margin-top: .35rem; }

/* ── TESTIMONIALS ── */
.testimonial-section { background: var(--cream); padding: 6rem 5rem; }
.testimonial-card { background: var(--white); border-radius: 16px; padding: 3rem; border-left: 4px solid var(--gold); max-width: 780px; margin: 0 auto; position: relative; }
.testimonial-card::before { content: '\201C'; font-family: 'Noto Serif', serif; font-size: 6rem; color: var(--lavender); position: absolute; top: -1rem; left: 1.5rem; line-height: 1; }
.testimonial-card blockquote { font-family: 'Noto Serif', serif; font-style: italic; font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; padding-top: 1.5rem; }
.testimonials-section { background: var(--cream); padding: 6rem 5rem; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.testimonials-grid .testimonial-card { max-width: none; margin: 0; }
.testimonial-card.wide { grid-column: 1 / -1; }

/* ── KONTAKT ── */
.intro-box { background: var(--cream); border-radius: 16px; padding: 2rem; margin-bottom: 2rem; border-left: 4px solid var(--gold); }
.intro-box h3 { font-size: 1.25rem; color: var(--plum); margin-bottom: .5rem; }
.intro-box p  { font-size: .92rem; color: var(--text-mid); }
.tag-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.tag { background: var(--lavender); color: var(--plum); border-radius: 3rem; padding: .3rem .9rem; font-size: .7rem; letter-spacing: .08em; font-weight: 500; }

/* ── EXTRA RESPONSIV ── */
@media(max-width:960px){
  .pp-intro, .ft-intro, .pkg-detail, .om-grid { grid-template-columns:1fr; padding-left:2rem; padding-right:2rem; gap:3rem; }
  .pp-single, .ft-services, .ft-how, .testimonial-section, .testimonials-section { padding-left:2rem; padding-right:2rem; }
  .ft-grid { grid-template-columns: 1fr; }
  .pkg-sidebar { position: static; }
  .om-photo { position: static; }
  .om-values { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.wide { grid-column: auto; }
  .pkg-detail { padding-top: 3rem; padding-bottom: 3rem; }
}
