/* ============================================
   Balansabody — Design tokens
   ============================================ */
:root {
  --linen: #F5EFE6;        /* main background, warm cream */
  --sand: #E8DBC8;         /* secondary bg / cards */
  --clay: #463F36;         /* primary text, dark sections */
  --clay-soft: #8B8175;    /* secondary text */
  --sage: #889573;         /* primary accent */
  --sage-deep: #5E6B50;    /* buttons, dark accents */
  --cream-white: #FBF7F0;  /* cards on dark sections */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;

  --container: 1160px;
  --section-pad: clamp(4rem, 9vw, 7.5rem);
  --radius-lg: 28px;
  --radius-md: 18px;
}

/* ============================================
   Reset & base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--linen);
  color: var(--clay);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--clay);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); font-weight: 600; }

p { color: var(--clay-soft); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--clay-soft);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================
   Layout helpers
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-pad) 0; position: relative; }
.section--alt { background: var(--sand); }
.section--dark { background: var(--clay); color: var(--linen); }
.section--dark h2, .section--dark .eyebrow { color: var(--cream-white); }
.section--dark .eyebrow { color: var(--sage); }
.section--sage { background: var(--sage-deep); color: var(--linen); }
.section--sage h2 { color: var(--cream-white); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage-deep);
  color: var(--cream-white);
}
.btn-primary:hover {
  background: var(--clay);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--clay);
  border: 1.5px solid var(--clay);
}
.btn-secondary:hover {
  background: var(--clay);
  color: var(--cream-white);
}
.section--dark .btn-secondary,
.section--sage .btn-secondary {
  color: var(--cream-white);
  border-color: rgba(245,239,230,0.4);
}
.section--dark .btn-secondary:hover,
.section--sage .btn-secondary:hover {
  background: var(--cream-white);
  color: var(--clay);
}
.section--sage .btn-primary {
  background: var(--cream-white);
  color: var(--sage-deep);
}
.section--sage .btn-primary:hover {
  background: var(--clay);
  color: var(--cream-white);
}

/* ============================================
   Decorative sprig (signature element)
   ============================================ */
.sprig {
  color: var(--sage);
  display: block;
}
.sprig--divider {
  width: 56px;
  height: 90px;
  margin: 0 auto 2.5rem;
  opacity: 0.55;
}
.sprig--hero {
  position: absolute;
  width: 140px;
  height: 220px;
  opacity: 0.3;
  z-index: 0;
}
.sprig--corner {
  position: absolute;
  width: 100px;
  height: 160px;
  opacity: 0.18;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(70, 63, 54, 0.08);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.05rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--clay);
  letter-spacing: 0.02em;
}
.logo svg { width: 26px; height: 26px; color: var(--sage-deep); flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clay);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--sage-deep); }
.nav-links .btn { font-size: 0.88rem; padding: 0.7rem 1.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--clay);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  padding-top: clamp(3rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { margin: 1rem 0 1.4rem; }
.hero-content .lead { max-width: 460px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-wrap { position: relative; }
.hero-image {
  border-radius: 48% 52% 58% 42% / 46% 42% 58% 54%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 60px -25px rgba(70, 63, 54, 0.35);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid rgba(251, 247, 240, 0.4);
}
.sprig--hero.s1 { top: -40px; left: -60px; transform: rotate(-15deg); }
.sprig--hero.s2 { bottom: -30px; right: 8%; transform: scaleX(-1) rotate(10deg); opacity: 0.22; }

/* ============================================
   Trust strip
   ============================================ */
.trust-strip {
  background: var(--sand);
  padding: 1.6rem 0;
  border-top: 1px solid rgba(70,63,54,0.06);
  border-bottom: 1px solid rgba(70,63,54,0.06);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  text-align: center;
}
.trust-inner img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream-white);
  flex-shrink: 0;
}
.trust-inner p {
  font-size: 0.92rem;
  color: var(--clay);
  max-width: 480px;
}
.trust-inner strong { color: var(--sage-deep); }

/* ============================================
   Om Filippa
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 420px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { margin-bottom: 1.1rem; }
.about-text p:last-of-type { margin-bottom: 0; }

/* ============================================
   Tjänster
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--cream-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border: 1px solid rgba(70, 63, 54, 0.06);
}
.service-card .price {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  color: var(--sage-deep);
  margin: 0.5rem 0 1.25rem;
}
.service-card .price span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clay-soft);
  font-weight: 400;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.service-card li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--clay-soft);
}
.service-card li svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  width: 16px; height: 16px;
  color: var(--sage);
}

/* ============================================
   Så går det till (process)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process-step .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--sage);
  display: block;
  margin-bottom: 0.4rem;
}
.process-step h3 { color: var(--cream-white); margin-bottom: 0.6rem; }
.process-step p { color: rgba(245, 239, 230, 0.68); font-size: 0.95rem; }

.process-disclaimer {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 230, 0.14);
  font-size: 0.88rem;
  color: rgba(245, 239, 230, 0.6);
  max-width: 700px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(70, 63, 54, 0.14);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  text-align: left;
  color: var(--clay);
}
.faq-question .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--sage-deep);
  transition: transform .3s ease;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner { padding-bottom: 1.35rem; max-width: 620px; }
.faq-item.open .faq-answer { max-height: 320px; }

/* ============================================
   Recensioner
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.review-card {
  background: var(--cream-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.review-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--sage);
}
.review-card p.quote { color: var(--clay); font-size: 1rem; }
.review-card .author {
  font-size: 0.85rem;
  color: var(--clay-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================
   Kontakt
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-info p { color: rgba(245, 239, 230, 0.85); margin-bottom: 1.75rem; }
.info-list { display: flex; flex-direction: column; gap: 1.35rem; }
.info-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-item svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 0.15rem; color: var(--cream-white); }
.info-item .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 239, 230, 0.55);
  margin-bottom: 0.2rem;
}
.info-item .value { color: var(--cream-white); font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 239, 230, 0.75);
}
.field input,
.field textarea,
.field select {
  background: rgba(245, 239, 230, 0.08);
  border: 1px solid rgba(245, 239, 230, 0.25);
  border-radius: 12px;
  padding: 0.9rem 1.05rem;
  color: var(--cream-white);
  font-size: 1rem;
  transition: border-color .2s ease, background .2s ease;
}
.field select option { color: var(--clay); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(245, 239, 230, 0.4); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--cream-white);
  background: rgba(245, 239, 230, 0.14);
  outline: none;
}
.honeypot { position: absolute; left: -9999px; }
.form-note { font-size: 0.85rem; color: rgba(245, 239, 230, 0.55); }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--clay);
  color: rgba(245, 239, 230, 0.55);
  padding: 3.5rem 0 2.5rem;
  font-size: 0.88rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream-white);
}
.footer-brand svg { width: 22px; height: 22px; color: var(--sage); }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a:hover { color: var(--cream-white); }
.footer .disclaimer {
  margin-top: 1.75rem;
  max-width: 760px;
  line-height: 1.7;
}

/* ============================================
   Scroll reveal animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid .about-image { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-image-wrap { order: -1; max-width: 320px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .sprig--hero.s1 { left: -30px; width: 100px; height: 160px; }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--linen);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 1.75rem 1.5rem 2rem;
    border-bottom: 1px solid rgba(70, 63, 54, 0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-content .lead { max-width: 100%; }
}
