/* ========================================
   Anna Minimal — site.css (clean + stable)
   ======================================== */

/* ─────────────────────────────────────────
   TOKENS
   ───────────────────────────────────────── */

   /* --accent: #c67b5c;  */
:root {
  --brand: #9d8b7a;
  --accent: #A55A3B;
  --bg: #faf7f2;
  --dark: #4a4238;
  --white: #ffffff;
  --mid: #7a6e65;
  --light: #ede8e1;
  --border: #ddd5cb;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:
    'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --nav-h: 68px;
  --max: 1080px;
  --section: clamp(4rem, 9vw, 8rem);
  --pad-x: clamp(1.25rem, 6vw, 5rem);

  --radius: 2px;
  --shadow: 0 16px 44px rgba(74, 66, 56, 0.14);
}

/* ─────────────────────────────────────────
   RESET / BASE
   ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
#scrollTopBtn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

#scrollTopBtn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: var(--dark);
  color: var(--white);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  background: rgba(198, 123, 92, 0.25);
}

/* Avoid content hiding behind fixed nav when anchoring */
:target {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

/* ─────────────────────────────────────────
   LAYOUT PRIMITIVES
   ───────────────────────────────────────── */
.site-main {
  display: block;
}

.section-wrap {
  padding: var(--section) var(--pad-x);
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}

.section-title em {
  font-style: italic;
  color: var(--brand);
}


/* polylang*/
/* Placering i Header */
/* Dölj båda som standard */
.lang-text {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

#nav.solid .lang-text { color: var(--mid); }

.lang-switch {
  display: flex;
  align-items: center;
}

.switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
   border: 1px solid rgba(255,255,255,0.85);
  cursor: pointer;
  transition: border-color 0.45s, background 0.45s;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}


.nav-mobile .lang-switch {
  justify-content: center;
  padding: 0.45rem 0.75rem;
}

.nav-mobile .switch {
  padding: 0.45rem 0.75rem;
  font-size: 0.72rem;
  border: 1px solid rgba(74, 66, 56, 0.22);
  color: var(--dark);
}

.nav-mobile .switch svg {
  stroke: var(--dark);
}

.nav-mobile .switch:hover {
  background: rgba(74,66,56,0.06);
}

.to-en,
.to-sv {
  display: none;
}

/* På svenska — visa "English" */
.lang-toggle:not(:checked) ~ .to-en { display: inline; }

/* På engelska — visa "Svenska" */
.lang-toggle:checked ~ .to-sv { display: inline; }
/*
border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem; */


/* Solid nav */
#nav.solid .switch {
  border-color: var(--border);
  color: var(--dark);
}

#nav.solid .switch svg {
  stroke: var(--dark);
}

.switch svg {
  stroke: var(--white);
  transition: stroke 0.45s;
  flex-shrink: 0;
}

/* Dölj checkbox */
.switch input { display: none; }

/* Dölj slider helt */
.slider { display: none; }

/* Hover */
.switch:hover {
  background: rgba(255,255,255,0.1);
}

#nav.solid .switch:hover {
  background: var(--light);
}


/* Svenska visas när ej ikryssad */
/* Svenska är aktivt – visa "English" som alternativ */
.to-sv { display: none; }
.to-en { display: inline; }

/* Engelska är aktivt – visa "Svenska" som alternativ */
#lang-toggle:checked ~ .to-en { display: none; }
#lang-toggle:checked ~ .to-sv { display: inline; }

/* ─────────────────────────────────────────
   NAV (works with your header.php)
   ───────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.45s ease,
    box-shadow 0.45s ease,
    color 0.45s ease;
}

#nav.transparent {
  background: transparent;
}

#nav.solid {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(74, 66, 56, 0.14);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--white);
  transition: color 0.45s;
}

.nav-logo-img {
  display: none; /* göm bildloggan tills vidare */
}

.nav-logo::after {
  content: 'Annas Rum för Terapi';
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--dark);
}

#nav.solid .nav-logo {
  color: var(--dark);
}

.nav-logo em {
  font-style: italic;
  color: var(--accent);
}
#nav.solid .nav-logo em {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}

#nav.solid .nav-links a {
  color: rgba(74, 66, 56, 0.78);
}
.nav-links a:hover {
  color: var(--accent);
}

.nav-boka {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.72rem !important;
  letter-spacing: 0.14em;
  transition:
    background 0.25s,
    transform 0.2s;
}

.nav-boka:hover {
  background: #b36a4b;
  transform: translateY(-1px);
}

.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--accent);
}

#nav.solid .nav-links .current-menu-item > a,
#nav.solid .nav-links .current_page_item > a {
  color: var(--accent);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition:
    background 0.45s,
    transform 0.3s,
    opacity 0.3s;
  transform-origin: center;
}
#nav.solid .nav-burger span {
  background: var(--dark);
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
/* Mobile menu container */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  padding: 2rem var(--pad-x) 3rem;
  border-top: 1px solid rgba(74, 66, 56, 0.14);
  box-shadow: 0 8px 32px rgba(74, 66, 56, 0.12);
  z-index: 199;
}
.nav-mobile.open {
  display: block;
}

/* Reset list */
.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Default mobile links = “text links” */
.nav-mobile li > a {
  display: block;
  font-size: 1.3rem;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--dark);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(74, 66, 56, 0.1);
}

/* CTA = only last menu item */
.nav-mobile li:last-child > a {
  margin-top: 1.5rem;
  border: none;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-family: var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.nav-mobile a.nav-boka {
  margin-top: 1.5rem;
  border: none;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-family: var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.nav-mobile-links {
  list-style: none;
}
.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* ─────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────── */
.btn-primary,
.btn-outline,
.btn-dark,
.btn-ghost-dark,
.contact-strip-btn {
  display: inline-block;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  transition:
    background 0.25s,
    transform 0.2s,
    border-color 0.25s,
    color 0.25s;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: #b36a4b;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid transparent;
}
.btn-dark:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(74, 66, 56, 0.22);
}
.btn-ghost-dark:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
}


@media (max-width: 600px) {
  .btn-primary,
  .btn-dark,
  .btn-ghost-dark {
    display: block;
    width: 100%;
    text-align: center;
  }
}
/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover ;
  object-position: center 69%;
  animation: heroZoom 12s ease-out forwards;
  filter: grayscale(60%) sepia(20%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(74, 66, 56, 0.35) 0%,
    rgba(74, 66, 56, 0.15) 50%,
    rgba(74, 66, 56, 0.55) 100%
  );
}

.hero-bg::after {
  pointer-events: none;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad-x);
  max-width: 820px;
  margin-top: 60px; /* var 180px */
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-top: 0.78rem;
  margin-bottom: 1.15rem;
  opacity: 1;
  animation: fadeUp 0.8s 0.3s forwards;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

.hero-h1 {
   font-family: var(--serif);
  font-size: clamp(2.6rem, 4.6vw, 3.9rem); /* var clamp(2.6rem, 6vw, 5rem) */
  font-weight: 200;
  line-height: 0.95;
  color: var(--white);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-microtext {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s forwards;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.35);
  animation: scrollPulse 2s 2s infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleY(0.6);
  }
}

/* ── SUBHERO ─────────────────────────────────────────── */
.subhero {
  padding: calc(var(--nav-h) + 7rem) var(--pad-x) 7rem; /* was 4rem – much more air */
  background: var(--dark);
  background-size: cover;
  background-position: center 58%; /*testar med olika bilder 48% 58% o 68% för att hitta bäst placering av motivet */
  filter: grayscale(60%) sepia(20%);
  text-align: center;
  position: relative;
  min-height: 52vh; /* guarantees height on short viewports */
}

.subhero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.20) 60%,
    rgba(0,0,0,0.35) 100%
  );
  pointer-events: none;
}

.subhero > * {
  position: relative;
  z-index: 1;
}

.subhero .label {
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.subhero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem); /* slightly bigger */
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.subhero p {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.70);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.subhero h1,
.subhero p,
.subhero .label {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}


/* ── SUBPAGE BODY ────────────────────────────────────── */
.subpage-body {
  padding: 5rem clamp(2rem, 6vw, 5rem) 5rem; /* was var(--gap) = too tight top/bottom */
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr; /* text gets slightly more room */
  gap: 6rem; /* was 5rem — more separation helps breathing */
  align-items: start; /* align to top so photo doesn't stretch oddly */
}

.subpage-body h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}

.subpage-body p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.subpage-body ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.5rem;
}

.subpage-body li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(74, 66, 56, 0.1);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: var(--mid);
  line-height: 1.75;
}

.subpage-body li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.65em;
}


/* ── PHOTO ───────────────────────────────────────────── */
/* .subpage-image {
  position: sticky;
  top: calc(var(--nav-h) + 2rem); sticks while text scrolls — feels intentional
} */

.subpage-image {
  aspect-ratio: 4 / 5;
  background: var(--light);
  position: relative;
  overflow: hidden;
  margin-left: auto;
  width: 100%;
}

.subpage-photo {
  position: relative;
  height: 100%;
  background: linear-gradient(
    160deg,
    var(--light) 0%,
    rgba(74, 66, 56, 0.16) 100%
  );
}

.subpage-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.subpage-photo:hover .subpage-photo-img {
  transform: scale(1.06);
}

.cta-wrap .btn-primary {
  width: 100%;
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 820px) {
  .subpage-body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .subpage-image {
    position: static;
    order: -1; /* photo above text on mobile */
    aspect-ratio: 4 / 5; /* landscape on mobile */
    width: 100%;
  }

  .subpage-photo {
    height: 100%;
  }
}


/* ── SAMTAL BODY ─────────────────────────────────────── */
.subpage-body--samtal {
  padding: 5rem clamp(2rem, 6vw, 5rem);
  width: 90vw;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.6fr;
  gap: 7rem;
  align-items: start;
}
.samtal-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.75rem;
}


.samtal-block {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(74, 66, 56, 0.12);
}

.samtal-block_why h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.85rem;
   margin-top: 0.85rem;
}

.samtal-block h2 {
 font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.85rem;
  margin-top: 0.85rem;
}

.samtal-block p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.samtal-block_why p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.samtal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.samtal-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(74, 66, 56, 0.1);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

.samtal-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.65em;
}

/* Bild */
.samtal-image{
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--light);
  position: relative;
  overflow: hidden;
  margin-left: auto;
}

.samtal-photo {
 position: relative;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--light) 0%,
    rgba(74, 66, 56, 0.16) 100%
  );
  height: 100%;
}

.samtal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.samtal-photo:hover .samtal-photo-img {
  transform: scale(1.06);
}

/* Mobil */
@media (max-width: 820px) {
  .subpage-body--samtal {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .samtal-image {
    position: static;
    order: -1;
  }

  .samtal-photo {
    max-width: 100%;
    aspect-ratio: 16/9;
    margin: 0;
  }
}

/* ─────────────────────────────────────────
   RECOGNITION
   ───────────────────────────────────────── */
#recognition {
  background: var(--light);
  padding: var(--section) var(--pad-x);
}

.recog-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.recog-left {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.recog-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(74, 66, 56, 0.35) 0%,
    rgba(74, 66, 56, 0.15) 40%,
    rgba(74, 66, 56, 0.55) 100%
  );
}

.recog-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 48%;
  filter: grayscale(60%) sepia(20%) brightness(95%) contrast(90%);
  display: block;
}

.recog-intro {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  margin-top: 1.5rem;
}

.recog-list {
  list-style: none;
  margin-top: 2rem;
}

.recog-list li {
  padding: 1rem 0;

  font-size: 0.95rem;
  color: var(--mid);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  line-height: 1.65;
}

.recog-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.6em;
}

@media (max-width: 768px) {
  .recog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─────────────────────────────────────────
   FIRST SESSION
   ───────────────────────────────────────── */
#first-session {
  background: var(--bg);
  padding: var(--section) var(--pad-x);
}

.session-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.session-text {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.85;
  margin-top: 1.5rem;
}

.first-step-media{
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border);
}


.first-step-img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: grayscale(100%) brightness(95%) contrast(90%);
}


.session-steps {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}

.session-step {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(74, 66, 56, 0.14);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  opacity: 1; /* visible even without JS */
  transform: none; /* visible even without JS */
}

.session-step:first-child {
  border-top: 1px solid rgba(74, 66, 56, 0.14);
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(74, 66, 56, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 0.1rem;
}

.step-body strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 1px solid rgba(74, 66, 56, 0.18) /* Den vertikala linjen */
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.dot {
    position: absolute;
    left: -35px;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
}






@media (max-width: 900px){
  .session-grid{
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .first-step-img{
    height: 300px;
  }
}
/* ─────────────────────────────────────────
   HOW WE WORK
   ───────────────────────────────────────── */
#how-we-work {
  background: var(--light);
  padding: var(--section) var(--pad-x);
}

.work-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.work-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.work-tagline {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--mid);
  line-height: 1.7;
  padding-top: 1rem;
}

.work-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;

}

.work-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.work-card:hover {
  background: var(--white);
}

.work-card-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(74, 66, 56, 0.14);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.work-card h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.work-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.75;
}

.work-cta {
  margin-top: 3rem;
  text-align: center;
}



/* recessioner */
/* Behållaren för hela sektionen */

/* ── RECENSIONER ─────────────────────────────────────── */
.review-section {
  padding: 6rem clamp(2rem, 8vw, 10rem);
  background: var(--dark);
  text-align: center;
}

.testimonial-slider {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }

.testimonial-author {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}



.testimonial-dots .testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--brand);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.testimonial-dots .testimonial-dot.active {
  background: var(--brand);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
/* ─────────────────────────────────────────
   ABOUT PREVIEW
   ───────────────────────────────────────── */
#about-preview {
  padding: var(--section) var(--pad-x);
}

.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4/5;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.about-photo-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--light) 0%,
    rgba(74, 66, 56, 0.16) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}
.about-photo:hover img {
  transform: scale(1.06);
}

.about-monogram {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--brand);
  opacity: 0.4;
  letter-spacing: 0.05em;
}

.about-text .section-title {
  margin: 0.75rem 0 1.5rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   BOKA / PRICING / FAQ
   ───────────────────────────────────────── */
#boka {
  background: var(--light);
  padding: var(--section) var(--pad-x);
}

.boka-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

#boka .label { color: var(--accent); }
#boka .section-title { color: var(--dark); margin: 0.75rem 0 2rem; }

.pricing-list {
  display: flex;
  flex-direction: column;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  font-size: 0.9rem;
}


/* .pricing-note {
  font-size: 0.6rem;
  color: var(--mid);
  margin: 0
  ;
} */
.pricing-key { color: var(--dark); }
.pricing-val { color: var(--brand); font-weight: 400; }

.boka-right .label { color: var(--brand); }

.faq-list { margin-top: 1.8rem; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.8;
}

.boka-cta { margin-top: 2.5rem; }

.boka-cta .btn-primary{
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .boka-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


/* ── BOKA PAGE ───────────────────────────────────────── */

/* ── SEKTION ─────────────────────────────────────────────────────────────────── */
.booking-hero {
  background: var(--light);
  padding: 5rem clamp(2rem, 6vw, 5rem);
}

.booking-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ── TEXT ────────────────────────────────────────────────────────────────────── */
.section-label {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.booking-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}

.booking-title em {
  font-style: italic;
  color: var(--brand);
}

.booking-lead {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  margin-top: 1.5rem;
}

/* ── KALENDER ────────────────────────────────────────────────────────────────── */
.calendly-inline-widget {
  width: 100%;
  height: 700px;
}

/* ── TJÄNSTER ────────────────────────────────────────────────────────────────── */
.cal-services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cal-services__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  color: var(--dark);
  margin: 0;
}

/* ── TABELL ──────────────────────────────────────────────────────────────────── */
.cal-table-wrap {
    width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  padding: 2rem clamp(1rem, 3vw, 2.5rem);
}

.cal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;

}

.cal-table thead tr {
  border-bottom: 1px solid #c9c0b5;
}

.cal-table thead th {
  font-family: var(--sans, 'Jost', sans-serif);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9e9088;
  font-weight: 400;
  padding: 0 20px 14px 0;
  text-align: left;
}

.cal-table thead th:last-child { padding-right: 0; }

.cal-table tbody tr {
  border-bottom: 1px solid #d8d2cc;
  transition: background 0.2s ease;
}

.cal-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.35);
}

.cal-table tbody td {
  padding: 22px 20px 22px 0;
  font-size: 14px;
  color: #3a3530;
  vertical-align: top;
  line-height: 1.5;
}

.cal-table tbody td:last-child { padding-right: 0; }

.cal-table__name {
  display: block;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: 17px;
  color: #2e2a26;
  margin-bottom: 3px;
}

.cal-table__desc {
  display: block;
  font-size: 12px;
  color: #8c8078;
  line-height: 1.5;
}

.cal-table__dur {
  font-size: 11px;
  color: #8c8078;
  white-space: nowrap;
}

.cal-table__price {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: 17px;
  color: #2e2a26;
  white-space: nowrap;
}

.cal-table__price.is-free    { color: #7a9e7e; font-style: italic; }
.cal-table__price.is-reduced { color: #a07d5a; }

.cal-table__cta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a07d5a;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s;
  white-space: nowrap;
}

.cal-table__cta:hover { color: #2e2a26; }

.cal-table__cta-muted {
  font-size: 11px;
  color: #9e9088;
  font-style: italic;
}

/* ── TABELL RESPONSIV ────────────────────────────────────────────────────────── */

/* Tablet: dölj Hur-kolumnen, visa CTA som länk direkt på formatsnamnet */
@media (max-width: 760px) {
  .cal-table {
    min-width: 0;
  }

  /* Dölj Tid- och Hur-kolumnerna */
  .cal-table thead th:nth-child(2),
  .cal-table thead th:nth-child(4),
  .cal-table tbody td:nth-child(2),
  .cal-table tbody td:nth-child(4) {
    display: none;
  }

  .cal-table__name { font-size: 15px; }
  .cal-table__price { font-size: 15px; }
}

/* Mobil: stack-layout, ingen tabell */
@media (max-width: 520px) {
  .cal-table-wrap { overflow-x: visible; }

  .cal-table,
  .cal-table thead,
  .cal-table tbody,
  .cal-table tr,
  .cal-table th,
  .cal-table td {
    display: block;
  }

  .cal-table thead { display: none; }

  .cal-table tbody tr {
    padding: 18px 0;
    border-bottom: 1px solid #d8d2cc;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    align-items: start;
  }

  /* Format-cell: kolumn 1, rad 1–2 */
  .cal-table tbody td:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    padding: 0;
  }

  /* Tid-cell: dölj på mobil */
  .cal-table tbody td:nth-child(2) {
    display: none;
  }

  /* Pris-cell: kolumn 2, rad 1 */
  .cal-table tbody td:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
    text-align: right;
  }

  /* CTA-cell: kolumn 2, rad 2 */
  .cal-table tbody td:nth-child(4) {
    display: block;
    grid-column: 2;
    grid-row: 2;
    padding: 0;
    text-align: right;
  }

  .cal-table__name { font-size: 15px; }
  .cal-table__price { font-size: 15px; }
}

/* ── KONTAKT ─────────────────────────────────────────────────────────────────── */
.booking-contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem clamp(2rem, 6vw, 5rem);
}

@media (max-width: 860px) {
  .booking-contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-label {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--dark);
}

.contact-value,
.contact-link {
  font-size: 0.9rem;
  color: var(--mid);
}

.booking-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
}

.booking-image-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--light);
  position: relative;
  overflow: hidden;
  margin-left: auto;
}

.booking-photo {
  position: relative;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--light) 0%,
    rgba(74, 66, 56, 0.16) 100%
  );
  height: 100%;
}

.booking-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.booking-photo:hover .booking-photo-img {
  transform: scale(1.06);
}

/* ── WPFORMS ─────────────────────────────────────────────────────────────────── */
.wpforms-field input,
.wpforms-field textarea {
  width: 100% !important;
  font-family: var(--sans) !important;
  font-size: 0.9rem !important;
  color: var(--dark) !important;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 2px !important;
  padding: 0.85rem 1rem !important;
  outline: none !important;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
  border-color: var(--accent) !important;
}

.wpforms-field input[type='checkbox'] {
  width: auto !important;
  padding: 0 !important;
  margin-top: 0.2rem;
}

.wpforms-field input[type='text'],
.wpforms-field input[type='email'] {
  max-width: 100% !important;
}

.wpforms-submit-container {
  width: 100% !important;
}

.wpforms-field-label-inline {
  display: block !important;
  margin-bottom: 0.5rem !important;
  font-family: var(--sans) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
}

.wpforms-submit {
  width: 100% !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: var(--sans) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 0.95rem 2.2rem !important;
  cursor: pointer !important;
  transition: background 0.25s !important;
}

.wpforms-submit:hover {
  background: #b36a4b !important;
}

/* ── HITTA HIT ───────────────────────────────────────── */
.location-section {
  padding: 5rem clamp(2rem, 6vw, 5rem);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.location-section__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.location-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 2rem;
}

.location-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-details__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.location-details__label {
  font-family: var(--serif);
  color: var(--dark);
  flex-shrink: 0;
}

.location-details__value {
  color: var(--mid);
  text-align: right;
  line-height: 1.6;
}

/* Karta — svartvit */
.location-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(100%);
  border: none;
}

/* Mobil */
@media (max-width: 860px) {
  .location-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .location-map {
    aspect-ratio: 3 / 2;
  }

  .location-details__value {
    text-align: left;
  }
}

/* ── MOBIL ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .booking-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Se till att content kommer först, bild sen */
  .booking-hero__content { order: 1; }
  .booking-hero__media { order: 2; }

  /* Gör bilden mobilvänlig */
  .booking-hero__media {
    aspect-ratio: auto;
    height: clamp(260px, 55vw, 420px);
    margin-left: 0;
  }

  .booking-photo,
  .booking-photo img {
    width: 100%;
    height: 100%;
  }

  /* Calendly behöver ofta lite mindre höjd på mobil */
  .calendly-embed,
  .calendly-inline-widget {
    height: 680px;
    min-height: 680px;
  }
}

@media (max-width: 1100px) {
  .booking-hero__inner,
  .booking-contact__inner {
    gap: 3rem;
  }

  .booking-hero__media {
    aspect-ratio: 4 / 5;
  }
}

/* ── WPFORMS MOBIL & TABLET ──────────────────────────── */
@media (max-width: 860px) {
  .booking-contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-card {
    padding: 1.75rem 1.25rem;
  }

  .contact-row {
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }

  .wpforms-field input,
  .wpforms-field textarea {
    font-size: 1rem !important; /* förhindrar iOS auto-zoom vid focus */
  }

  .wpforms-submit {
    font-size: 0.85rem !important;
    padding: 1rem 1.5rem !important;
  }
}
/* ─────────────────────────────────────────
   CONTACT STRIP
   ───────────────────────────────────────── */
.contact-strip {
  background: var(--accent);
  padding: 3.5rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-strip-text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color:var(--accent);
  line-height: 1.3;
}

.contact-strip-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.contact-strip-details a,
.contact-strip-details span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-strip-details a:hover {
  color: var(--white);
}

.contact-strip-btn {
  background: var(--white);
  color: var(--accent);
  font-weight: 500;
  border: 1px solid transparent;
  margin-top: 0.5rem;
}
.contact-strip-btn:hover {
  background: var(--bg);
  transform: translateY(-2px);
}


/* ── INTEGRITETSSIDA ─────────────────────────────────── */
.policy-hero {
  background: var(--light);
  padding: 5rem clamp(2rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}

.policy-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.policy-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.policy-lead {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 60ch;
}

/* Content */
.policy-content {
  padding: 5rem clamp(2rem, 6vw, 5rem);
}

.policy-content__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: start;
}

.policy-section {
  border-bottom: 1px solid var(--border);
  padding-top: 1.75rem;
}

.policy-section__heading {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.85rem;
}

.policy-section__text {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.policy-section__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mobil */
@media (max-width: 860px) {
  .policy-content__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}





/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.site-footer{
  padding: var(--section) var(--pad-x);
  border-top: 1px solid var(--border);
  background: var(--dark);
}

.site-footer-inner{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem;
}

.footer-col h3{
  font-family: var(--serif);
  font-weight: 300;
  color: var(--light);
  margin-bottom: 0.75rem;
}

.footer-col p,
.footer-col a{
  color: var(--light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li{
  margin: 0.5rem 0;
}

.site-footer-text{
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--mid);
  font-size: 0.9rem;
}

.footer-credit a{
  color: var(--light);
  text-decoration: none;
  text-underline-offset: 3px;
}

@media (max-width: 900px){
  .site-footer-inner{
    grid-template-columns: 1fr;
  }
}
/* ─────────────────────────────────────────
   ANIMATIONS (safe)
   ───────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* If you later want reveal-on-scroll via JS, you can re-enable:
   .reveal { opacity: 0; transform: translateY(28px); }
   .reveal.visible { opacity: 1; transform: none; }
*/

details summary {
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details summary::after {
  content: '+';
  font-size: 1.2rem;
}
details[open] summary::after {
  content: '−';
}
details .details-inner {
  padding: 1rem 0 1.5rem;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }

  .recog-grid,
  .session-grid,
  .work-header,
  .about-grid,
  .boka-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

   @media (max-width: 900px){
  .recog-grid{
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
  .work-cards {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-strip-details {
    align-items: flex-start;
  }

  .footer-links {
    display: none;
  }

  .hero-h1 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }
}

@media (max-width: 520px) {
  :root {
    --section: 3.5rem;
    --pad-x: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}
