/* ============================================================
   style.css – Workshopkompaniet
   Delad stilmall för alla publika sidor
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #430e07;
  --orange: #f86624;
  --cream:  #fff5ed;
  --white:  #ffffff;
  --peach:  #fdcfab;
  --text:   #2a0d08;
  --muted:  #8a5a4a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--peach);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red) !important; }

/* ── KNAPPAR ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.75rem 1.75rem;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--red); }

.btn-secondary {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--peach);
}
.btn-secondary:hover { border-color: var(--red); }

/* ── SEKTIONER – DELADE ──────────────────────────────────── */
section { padding: 5rem 5vw; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 55ch;
  margin-bottom: 3rem;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  background: var(--white);
  border-top: 1px solid var(--peach);
  border-bottom: 1px solid var(--peach);
  padding: 3.5rem 5vw;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--peach);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.testimonial-quote {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  padding-left: 1rem;
  border-left: 3px solid var(--orange);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-initials {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--red);
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo-wrap { position: relative; }

.about-photo {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  object-position: top center;
  box-shadow: 0 8px 40px rgba(67,14,7,0.12);
  position: relative;
  z-index: 1;
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--orange);
  border-radius: 18px;
  z-index: 0;
}

.about-body {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-links {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
}

.about-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.about-link:hover { color: var(--orange); }

/* ── CARDS (vad-sektionen) ───────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--peach);
  border-radius: 14px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(67,14,7,0.1);
  transform: translateY(-3px);
}

.card-number {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--peach);
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── STEPS (hur det går till) ────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: steps;
}

.step { counter-increment: steps; }

.step::before {
  content: '0' counter(steps);
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── EVENTS ──────────────────────────────────────────────── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  background: var(--white);
  border: 1px solid var(--peach);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  transition: box-shadow 0.2s;
}
.event-item:hover { box-shadow: 0 4px 20px rgba(67,14,7,0.08); }

.event-date {
  text-align: center;
  background: var(--cream);
  border-radius: 8px;
  padding: 0.5rem;
  border: 1px solid var(--peach);
}

.event-date-day {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.event-date-month {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.event-title {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.2rem;
}

.event-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

.event-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: var(--peach);
  color: var(--red);
  white-space: nowrap;
}

/* ── KONTAKT ─────────────────────────────────────────────── */
.contact { background: #ffe9d5; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.35rem;
}

input, textarea, select {
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #e8c4aa;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--orange); }
textarea { resize: vertical; min-height: 120px; }

.promise-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.promise-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 0.45rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

.contact-detail a {
  font-size: 0.95rem;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--orange);
  width: fit-content;
  padding-bottom: 1px;
}

/* ── PROBLEM ─────────────────────────────────────────────── */
.problem {
  background: var(--red);
  padding: 5rem 5vw;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem .section-eyebrow { color: rgba(253,207,171,0.6); }
.problem .section-title { color: var(--peach); margin-bottom: 2rem; }
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.05rem;
  color: rgba(253,207,171,0.85);
  line-height: 1.55;
}
.problem-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 0.55rem;
}
.problem-conclusion {
  font-size: 1rem;
  color: var(--peach);
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem;
  line-height: 1.65;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  background: var(--white);
  padding: 5rem 5vw;
  border-top: 1px solid var(--peach);
}
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}
.faq-item { border-bottom: 1px solid var(--peach); }
.faq-question {
  width: 100%;
  text-align: left;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  background: transparent;
  border: none;
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--orange);
  min-width: 20px;
  text-align: right;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 1.5rem;
  max-width: 90%;
}
.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--red);
  color: var(--peach);
  padding: 3rem 5vw;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--peach);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(253,207,171,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--peach); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(253,207,171,0.4);
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253,207,171,0.15);
  margin-top: 0.5rem;
}
.footer-copy a { color: #f86624; text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }

/* ── MOBIL ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .event-item { grid-template-columns: 60px 1fr; }
  .event-tag { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-wrap::before { display: none; }
  .cards-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── COOKIE-MEDDELANDE ───────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--peach);
  padding: 1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(67,14,7,0.08);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.cookie-bar.hidden { transform: translateY(100%); }
.cookie-bar p { margin: 0; color: var(--muted); }
.cookie-bar a { color: var(--red); text-decoration: underline; }
.cookie-bar a:hover { color: var(--orange); }
.cookie-bar-close {
  background: var(--orange);
  border: none;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cookie-bar-close:hover { background: var(--red); }

/* ── SCROLL-ANIMATIONER ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Respektera prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── FAQ SMOOTH TRANSITION ───────────────────────────────── */
.faq-answer {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

/* ============================================================
   style.css – Workshopkompaniet
   Tillägg för ROI-sektion och finjusteringar
   ============================================================ */

/* ── ROI / BUSINESS CASE ─────────────────────────────────── */
.roi-section {
  background: var(--red);
  padding: 5rem 5vw;
  border-bottom: 1px solid rgba(253,207,171,0.2);
}

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.roi-calculator {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border: 1px solid var(--peach);
}

.roi-input-group {
  margin-bottom: 1.5rem;
}

.roi-input-group label {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.roi-input-group input {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 1rem;
  border: 2px solid var(--cream);
  background: var(--cream);
  color: var(--red);
}

.roi-input-group input:focus {
  border-color: var(--orange);
  background: var(--white);
}

.roi-result {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--peach);
  text-align: center;
}

.roi-result-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.roi-result-value {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.2;
  margin: 0.5rem 0;
}

.roi-result-note {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 860px) {
  .roi-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}