/* ═══════════════════════════════════════════════════
   EM Kliniken — Landningssida
   Varm, elegant, trygg. Taupe-brun & vitt.
   ═══════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  /* Bas */
  --white: #FFFFFF;
  --white-warm: #FFFAF5;
  --black-soft: #121315;

  /* Taupe-brun accent — matchar logotypens bakgrund */
  --accent: #8e6f60;              /* primär accent — varm taupe-brun, matchar loggan */
  --accent-dark: #6e574a;         /* mörkare — hover/active */
  --accent-light: #b09e92;        /* ljusare variant */
  --accent-powder: #d4cbc4;       /* pudrig variant — sektionsbakgrund */

  /* Neutrala */
  --gray-light: #F5F2EF;         /* ljust varmgrå */
  --gray-mid: #E8E3DE;           /* mellangrå */
  --gray-text: #666666;          /* sekundär text */
  --gray-border: #DDD8D3;        /* borders */

  /* Text */
  --text-dark: #121315;
  --text-body: #121315;
  --text-muted: #666666;

  /* Funktionella */
  --shadow-sm: 0 2px 8px rgba(18, 19, 21, 0.06);
  --shadow-md: 0 6px 24px rgba(18, 19, 21, 0.10);
  --shadow-lg: 0 16px 48px rgba(18, 19, 21, 0.14);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.25s ease;
  --max-width: 1200px;
  --section-pad: 5rem;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.container.narrow { max-width: 760px; }
.section { padding: var(--section-pad) 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.center-col { text-align: center; max-width: 720px; margin: 0 auto; }
.center-text { text-align: center; }

/* ── Section rhythm: white / warm alternating ── */
.section-light { background: var(--white); }
.section-warm { background: var(--white); }

/* ── Section-specific backgrounds ── */
.safe-env { background: rgba(212, 203, 196, 0.5); }
.reviews { background: rgba(212, 203, 196, 0.5); }
.pricing { background: var(--white-warm); }

/* ── Section wave transitions ── */
.section-wave {
  position: relative;
  padding-bottom: calc(var(--section-pad) + 40px);
}
.section-wave::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: inherit;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C300,40 600,0 900,30 C1050,45 1150,10 1200,20 L1200,40 L0,40 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C300,40 600,0 900,30 C1050,45 1150,10 1200,20 L1200,40 L0,40 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: translateY(100%);
  z-index: 1;
  pointer-events: none;
}
/* Last section before footer — wave blends into footer */
.contact.section-wave::after {
  background: var(--white);
}

/* ── Organic blob decorations ── */
.blob-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.blob-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.blob-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%) scale(3.5);
  opacity: 0.12;
  z-index: 0;
}
.blob-trygg {
  width: 200px;
  height: 200px;
  transform: scale(2.5);
  opacity: 0.08;
}
.blob-review {
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0.1;
}
.blob-contact {
  width: 200px;
  height: 200px;
  transform: scale(2);
  opacity: 0.06;
}

/* ── EM monogram watermarks ── */
.em-monogram {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.em-monogram-hero {
  bottom: -2rem;
  left: -1rem;
  font-size: 20rem;
  color: var(--accent);
  opacity: 0.03;
  line-height: 1;
}
.em-monogram-footer {
  bottom: 0.5rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.08;
  line-height: 1;
}

/* ── Typography ── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-weight: 300;
}
.body-text { font-size: 1.05rem; line-height: 1.8; color: var(--text-body); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}
.signature {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 1.5rem;
}
.signature-sub { font-size: 0.9rem; color: var(--text-muted); }

/* ── Accent line under section titles ── */
.title-accent {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--accent);
  margin: 0 0 1.5rem 0;
  border-radius: 1px;
  position: relative;
}
.title-accent::after {
  content: '';
  position: absolute;
  right: -8px;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.title-accent-center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Vertical accent divider in two-col sections ── */
.col-divider {
  display: none;
  position: absolute;
  left: -2rem;
  top: 20%;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  pointer-events: none;
}
@media (min-width: 768px) {
  .col-divider { display: block; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-gold {
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
}
.btn-gold:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(110, 87, 74, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-xl { padding: 1.3rem 3rem; font-size: 1.15rem; }
.btn-block { display: flex; width: 100%; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 1.2rem 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.site-header.scrolled .logo-img { height: 40px; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 400;
  transition: var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--accent-dark); }
.nav-link:hover::after { width: 100%; }
.nav-cta { color: var(--white); }
.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--white);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(212, 203, 196, 0.45) 0%, transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  width: 100%;
}
.hero-text { max-width: 620px; }
.hero-ctas { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portrait-img {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 580px;
  object-fit: cover;
  width: 100%;
  max-width: 460px;
}

/* ── About ── */
.about { position: relative; }
.col-image {
  position: relative;
}
.col-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
}

/* ── Trygg miljö ── */
.safe-env {
  position: relative;
  text-align: center;
}
.safe-env .center-col { position: relative; z-index: 2; }
.heart-icon { margin-bottom: 1rem; position: relative; z-index: 2; }

/* ── Line art illustrations ── */
.line-art-card {
  display: block;
  max-width: 180px;
  margin: 0 auto 1rem;
  opacity: 0.85;
  mix-blend-mode: multiply;
}
.line-art-trygg {
  max-width: 120px;
  margin: 0 auto 1.5rem;
  opacity: 0.7;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 2;
}
.line-art-bg {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  max-width: 250px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.line-art-natural {
  display: block;
  max-width: 80px;
  margin: 0 auto 1rem;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.line-art-footer {
  max-width: 60px;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

/* ── Behandlingar ── */
.treatments { position: relative; }
.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.treatment-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.treatment-card > * { position: relative; z-index: 2; }
.treatment-card-full {
  max-width: 760px;
  margin: 2.5rem auto 0;
  gap: 1.25rem;
}

/* ── Sammanfattning (alltid synlig) ── */
.treatment-summary {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ── Läs mer / details ── */
.treatment-details {
  margin-top: 0.5rem;
}
.treatment-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  user-select: none;
  list-style: none;
  padding: 0.6rem 0;
  transition: color var(--transition-fast);
}
.treatment-readmore::-webkit-details-marker { display: none; }
.treatment-readmore:hover { color: var(--accent-dark); }
.treatment-readmore .arrow {
  display: inline-block;
  transition: transform var(--transition);
  font-size: 0.8rem;
}
.treatment-details[open] .treatment-readmore .arrow {
  transform: rotate(180deg);
}
.treatment-expanded {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: expandFade 0.4s ease;
}
@keyframes expandFade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.treatment-header { margin-bottom: 0.5rem; }
.treatment-subtitle {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent-dark);
  margin-top: 0.3rem;
}
.treatment-subsection h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-block-end: 0.75rem;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.6;
}
.check-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 2px;
}
.treatment-divider {
  border: none;
  border-top: 1px solid var(--gray-border);
  margin: 1.5rem 0;
}
.treatment-expect {
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
}
.treatment-expect-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}
.treatment-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.consult-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-powder);
  color: var(--text-dark);
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-top: 0.5rem;
}
.consult-badge svg { color: var(--accent); flex-shrink: 0; }
.treatment-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.treatment-price {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent-dark);
  margin-top: 1.5rem;
}
.treatment-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}


/* ── Prislista ── */
.pricing { position: relative; }
.price-table {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--accent-powder);
}
.price-table tr:nth-child(odd) { background: var(--white); }
.price-table tr:nth-child(even) { background: var(--white-warm); }
.price-table td {
  padding: 1.1rem 1.8rem;
  font-size: 1.05rem;
  color: var(--text-body);
  border-block-end: 1px solid var(--accent-powder);
}
.price-table tr:last-child td { border-block-end: none; }
.price-table td:first-child { font-weight: 400; }
.price-cell {
  text-align: right;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

/* ── Före & Efter ── */
.before-after { position: relative; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.gallery-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  object-fit: cover;
}
.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(18, 19, 21, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
  z-index: 201;
}
.lightbox-close:hover { color: var(--accent-light); transform: scale(1.15); }

/* ── Omdömen ── */
.reviews { position: relative; }
.rating-summary {
  text-align: center;
  margin: 1.5rem 0 3rem;
  position: relative;
  z-index: 2;
}
.stars {
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.rating-text {
  display: block;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-top: 0.3rem;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-card > * { position: relative; z-index: 2; }
.quote-icon { margin-bottom: 1rem; opacity: 0.7; }
.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  font-style: italic;
}
.review-author {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* ── Kontakt ── */
.contact { position: relative; }
.contact .two-col { position: relative; z-index: 2; }
.contact-list { margin-top: 1.5rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--text-body);
}
.contact-icon { width: 28px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-link {
  color: var(--text-dark);
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}
.contact-link:hover { color: var(--accent-dark); border-bottom-color: var(--accent); }
.col-cta { display: flex; align-items: center; position: relative; }

/* ── Footer ── */
.site-footer {
  position: relative;
  background: var(--black-soft);
  color: var(--white-warm);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(142, 111, 96, 0.2);
  overflow: hidden;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.footer-copy { font-size: 0.95rem; }
.footer-link {
  color: var(--accent);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.footer-link:hover { color: var(--accent-light); }
.footer-cred { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr; gap: 1rem; }
  .em-monogram-hero { font-size: 14rem; }
  .blob-hero { transform: translate(-50%, -50%) scale(2.5); }
  .blob-trygg { transform: scale(1.8); }
  .blob-contact { transform: scale(1.5); }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem; }

  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 32px rgba(18, 19, 21, 0.12);
  }
  .main-nav.open { right: 0; }
  .hamburger { display: flex; }
  .nav-link { font-size: 1.1rem; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-text { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .portrait-img { max-height: 400px; max-width: 340px; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .col-divider { display: none !important; }
  .col-image, .col-cta { margin-top: 0; }

  .treatment-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .em-monogram-hero { font-size: 10rem; bottom: -1rem; left: -0.5rem; }
  .blob-hero { transform: translate(-50%, -50%) scale(2); }
  .blob-trygg { transform: scale(1.5); }
  .blob-contact { transform: scale(1.2); }

}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .em-monogram-hero { font-size: 8rem; }
  .em-monogram-footer { font-size: 3rem; }
  .blob-hero { transform: translate(-50%, -50%) scale(1.5); }
  .blob-trygg { transform: scale(1.2); }
  .blob-contact { transform: scale(1); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}