/* ============================================================
   NIPSY – styles
   Warm cream editorial, hairline motifs, premium typography.
   ============================================================ */

:root {
  /* palette */
  --bg:        #f5efe2;          /* warm cream */
  --bg-soft:   #efe6d3;          /* deeper cream */
  --bg-warm:   #ebe0c8;          /* even deeper, for variation */
  --ink:       #2a221a;          /* warm dark brown text */
  --ink-soft:  #4a3f33;
  --ink-mute:  #8a7c6a;
  --line:      #d8c9aa;          /* hairline */
  --line-soft: #e3d6b9;
  --accent:    oklch(0.62 0.10 70);   /* honey ochre */
  --accent-d:  oklch(0.50 0.11 60);
  --paper:     #faf5e9;          /* lighter card paper */

  /* type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* sizing */
  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --section-pad: clamp(80px, 11vw, 160px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(1200px 600px at 80% -20%, rgba(212,170,90,0.10), transparent 70%),
    radial-gradient(900px 600px at -10% 110%, rgba(212,170,90,0.08), transparent 70%);
  mix-blend-mode: multiply;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--accent); color: var(--bg); }

/* ----------------------------------------------------------- */
/* Reveal-on-scroll                                            */
/* ----------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----------------------------------------------------------- */
/* NAV                                                         */
/* ----------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 32px;
  padding: 18px var(--pad);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line-soft); }

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.nav__mark { width: 26px; height: 26px; color: var(--ink); }
.nav__wordmark {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav__links {
  display: flex;
  gap: 36px;
  justify-self: center;
}
.nav__links a {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color .25s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--ink);
  transition: right .45s cubic-bezier(.2,.7,.2,1);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}
.nav__burger span {
  position: absolute;
  left: 9px; right: 9px;
  height: 1px;
  background: var(--ink);
  transition: transform .35s ease, opacity .25s ease;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.language-switch {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  color: var(--ink-mute);
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1;
  white-space: nowrap;
}
.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.language-switch a:hover,
.language-switch a.is-active {
  background: var(--ink);
  color: var(--bg);
}


/* ----------------------------------------------------------- */
/* Buttons                                                     */
/* ----------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s ease;
}
.btn span { position: relative; z-index: 2; }
.btn__arrow {
  display: inline-block;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* solid (filled w/ ink) */
.btn--solid {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(102%);
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
  z-index: 1;
}
.btn--solid:hover::before { transform: translateY(0); }
.btn--solid:hover { color: var(--ink); border-color: var(--accent); }

/* ghost – outline */
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  padding: 10px 18px;
}
.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(102%);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  z-index: 1;
}
.btn--ghost:hover::before { transform: translateY(0); }
.btn--ghost:hover { color: var(--bg); }

/* mini */
.btn--mini {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  padding: 9px 16px;
  font-size: 13px;
}
.btn--mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(102%);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  z-index: 1;
}
.btn--mini:hover::before { transform: translateY(0); }
.btn--mini:hover { color: var(--bg); border-color: var(--ink); }

/* text button */
.btn--text {
  background: transparent;
  color: var(--ink);
  border: none;
  padding: 14px 6px;
}
.btn--text .btn__arrow { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.btn--text:hover .btn__arrow { transform: translateY(3px); }
.btn--text::after {
  content: "";
  position: absolute;
  left: 6px; right: 30px;
  bottom: 10px;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(0.3);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.btn--text:hover::after { transform: scaleX(1); }

/* block */
.btn--block { display: flex; width: 100%; justify-content: center; padding: 18px 24px; font-size: 15px; }

/* small */
.btn--sm { padding: 11px 20px; font-size: 13px; }

/* line (used inside solid for a sweeping line on hover) */
.btn__line {
  display: none; /* reserved if you want a sweeping line later */
}

/* link with underline animation */
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding-bottom: 4px;
  position: relative;
  width: fit-content;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.link-underline:hover::after { transform: scaleX(0); transform-origin: right; }
.link-underline span:last-child { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.link-underline:hover span:last-child { transform: translateX(4px); }

/* ----------------------------------------------------------- */
/* HERO                                                        */
/* ----------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(82px, 9vw, 132px) var(--pad) 0;
  max-width: var(--maxw);
  margin: 0 auto;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  max-width: 930px;
  padding-bottom: clamp(48px, 7vw, 76px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: none;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  width: fit-content;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 25%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 25%, transparent); }
  50%       { box-shadow: 0 0 0 8px color-mix(in oklab, var(--accent) 10%, transparent); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--accent-d);
}
.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__lede {
  margin: 32px 0 0;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 62ch;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero__meta {
  list-style: none;
  margin: 60px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero__meta li {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.hero__meta span {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--accent-d);
  margin-bottom: 6px;
}

/* art column */
.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 380px;
}
.hero__portrait {
  position: absolute;
  inset: 0;
  background: var(--bg-warm);
  color: var(--ink-mute);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.hero__svg { width: 100%; height: 100%; color: var(--ink); }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.hero__portrait:hover .hero__img { transform: scale(1.05); }
.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(42,34,26,0.45) 100%),
    linear-gradient(180deg, rgba(245,239,226,0.05) 0%, transparent 30%);
  pointer-events: none;
}
.hero__portrait-caption {
  color: #f0e4cf !important;
  z-index: 2;
}
.hero__portrait-tick { color: #fff !important; }
.hero__portrait-caption {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.hero__portrait-tick {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
}

.hero__lines {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 70%;
  height: 70%;
  pointer-events: none;
  color: var(--accent-d);
  opacity: 0.5;
}
.hero__lines path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawLine 3.2s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__lines .ln-1 { animation-delay: .2s; }
.hero__lines .ln-2 { animation-delay: .5s; }
.hero__lines .ln-3 { animation-delay: .8s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

/* ticker */
.hero__ticker {
  margin-top: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.hero__ticker-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--ink-soft);
  animation: ticker 38s linear infinite;
}
.hero__ticker-track span:nth-child(even) { color: var(--accent-d); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------- */
/* SECTION generic                                             */
/* ----------------------------------------------------------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-pad) var(--pad);
}
.section__head { margin-bottom: 60px; max-width: 720px; }
.section__num {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent-d);
  display: block;
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.section__title em { font-style: italic; color: var(--accent-d); }
.section__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  margin: 22px 0 0;
  max-width: 58ch;
  text-wrap: pretty;
}
.section__lede em { font-style: italic; color: var(--accent-d); }

/* ----------------------------------------------------------- */
/* OM                                                          */
/* ----------------------------------------------------------- */
.section--om { border-top: 1px solid var(--line-soft); }

.om__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.om__portrait-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  color: var(--ink-mute);
  overflow: hidden;
  border-radius: 2px;
}
.om__portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.om__portrait-frame:hover img { transform: scale(1.04); }
.om__facts {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.om__facts div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.om__facts dt {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.om__facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
}

.om__body p {
  font-size: clamp(16px, 1.3vw, 18.5px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.om__body strong { color: var(--ink); font-weight: 500; }
.om__body em { font-style: italic; color: var(--accent-d); font-family: var(--serif); font-size: 1.05em; }
.om__lede {
  font-family: var(--serif) !important;
  font-size: clamp(22px, 2.4vw, 30px) !important;
  line-height: 1.35 !important;
  color: var(--ink) !important;
  font-style: italic;
  margin-bottom: 32px !important;
}

/* ----------------------------------------------------------- */
/* TERAPI                                                      */
/* ----------------------------------------------------------- */
.section--terapi {
  background: var(--bg-soft);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section--terapi .section__head,
.section--terapi .terapi__grid,
.section--terapi .terapi__note {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.terapi__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 3.5vw, 44px);
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease, border-color .5s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 0;
  height: 1px;
  background: var(--accent-d);
  transition: width .8s cubic-bezier(.2,.7,.2,1);
}
.card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--accent) 60%, var(--line));
  box-shadow: 0 30px 60px -30px rgba(80, 50, 0, 0.18);
}
.card:hover::before { width: 100%; }

.card__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.card__index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--accent-d);
  line-height: 1;
}
.card__head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  margin: 0;
  letter-spacing: -0.01em;
}

.card__lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}
.card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--accent-d);
}

.card__foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.card__price-num {
  font-family: var(--serif);
  font-size: 28px;
  display: block;
  line-height: 1;
}
.card__price-unit {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.terapi__note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ----------------------------------------------------------- */
/* SWITCHER (Terapi tabs)                                      */
/* ----------------------------------------------------------- */
.switcher {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -40px rgba(80, 50, 0, 0.18);
}
.switcher__tabs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg-warm) 60%, var(--paper));
}
.switcher__tab {
  appearance: none;
  background: transparent;
  border: none;
  padding: 22px 28px;
  text-align: left;
  cursor: pointer;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  position: relative;
  z-index: 2;
  transition: color .45s ease;
}
.switcher__tab.is-active { color: var(--ink); }
.switcher__tab-i {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent-d);
}
.switcher__tab-label {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.01em;
}
.switcher__indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50%;
  height: 1px;
  background: var(--ink);
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
  z-index: 3;
}
.switcher__tabs[data-active="par"] .switcher__indicator { transform: translateX(100%); }

.switcher__panels { position: relative; }
.switcher__panel {
  padding: clamp(28px, 3.5vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  animation: panelIn .55s cubic-bezier(.2,.7,.2,1);
}
.switcher__panel[hidden] { display: none; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.switcher__lede p {
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  font-style: italic;
  text-wrap: pretty;
}
.switcher__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.switcher__list li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.switcher__list li:last-child { border-bottom: 1px solid var(--line); }
.switcher__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 21px;
  width: 12px; height: 1px;
  background: var(--accent-d);
}
.switcher__foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

/* price reveal */
.price {
  position: relative;
}
.price > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: border-color .35s ease, background .35s ease, color .35s ease;
}
.price > summary::-webkit-details-marker { display: none; }
.price > summary:hover { border-color: var(--ink); }
.price__chev {
  display: inline-block;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 0.8;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  color: var(--accent-d);
}
.price[open] > summary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.price[open] > summary .price__chev { transform: rotate(45deg); color: var(--bg); }
.price[open] .price__label::after { content: " – dölj"; opacity: 0.7; }

.price__reveal {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 20px;
  box-shadow: 0 30px 60px -30px rgba(80, 50, 0, 0.25);
  animation: priceIn .35s cubic-bezier(.2,.7,.2,1);
  z-index: 5;
}
.price__reveal::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 28px;
  width: 10px; height: 10px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: translateY(-6px) rotate(45deg);
}
@keyframes priceIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.price__row { display: flex; align-items: baseline; gap: 8px; }
.price__num {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
}
.price__unit { font-size: 13px; color: var(--ink-mute); letter-spacing: 0.04em; }
.price__note {
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-mute);
}



/* method explainer links */
.method-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.method-links a,
.geo-card a {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size .35s ease, color .35s ease, border-color .35s ease;
}
.method-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background-color: rgba(255,255,255,.42);
  background-position: 14px calc(100% - 8px);
  background-size: calc(100% - 28px) 1px;
  font-size: 13px;
}
.method-links a:hover,
.geo-card a:hover {
  background-size: 0% 1px;
  color: var(--accent-d);
}
.method-links a:hover {
  border-color: var(--accent-d);
}

/* ----------------------------------------------------------- */
/* ACCORDION (Arbetssätt)                                      */
/* ----------------------------------------------------------- */
.accordion {
  border-top: 1px solid var(--line);
}
.acc {
  border-bottom: 1px solid var(--line);
  position: relative;
}
.acc > summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  transition: padding-left .5s cubic-bezier(.2,.7,.2,1);
}
.acc > summary::-webkit-details-marker { display: none; }
.acc:hover > summary { padding-left: 12px; }
.acc__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--accent-d);
  line-height: 1;
}
.acc__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.acc__chev {
  position: relative;
  justify-self: end;
  width: 22px; height: 22px;
}
.acc__chev::before,
.acc__chev::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
}
.acc__chev::before {
  left: 0; right: 0; top: 50%;
  height: 1px;
}
.acc__chev::after {
  top: 0; bottom: 0; left: 50%;
  width: 1px;
}
.acc[open] .acc__chev::after { transform: scaleY(0); opacity: 0; }

.acc__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s cubic-bezier(.2,.7,.2,1);
}
.acc[open] .acc__body { grid-template-rows: 1fr; }
.acc__body > p {
  overflow: hidden;
  margin: 0;
  padding-left: calc(70px + clamp(16px, 3vw, 40px));
  padding-right: 60px;
  padding-bottom: 28px;
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 70ch;
  text-wrap: pretty;
}

/* ----------------------------------------------------------- */
/* ARBETSSÄTT (legacy approach styles – kept for fallback)     */
/* ----------------------------------------------------------- */
.approach {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.approach__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: 44px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding-left .5s ease;
}
.approach__item:last-child { border-bottom: 1px solid var(--line); }
.approach__item:hover { padding-left: 12px; }
.approach__num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-style: italic;
  color: var(--accent-d);
  line-height: 1;
}
.approach__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.approach__body p {
  margin: 0;
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 60ch;
  text-wrap: pretty;
}

/* ----------------------------------------------------------- */
/* PROCESS                                                     */
/* ----------------------------------------------------------- */
.section--process {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) var(--section-pad);
  position: relative;
}
.process__line {
  color: var(--accent-d);
  opacity: 0.55;
  margin-bottom: -8px;
}
.process__line svg { width: 100%; height: 80px; }
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0;
  margin: 0;
}
.process li {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.process li span {
  display: block;
  font-style: italic;
  color: var(--accent-d);
  margin-bottom: 6px;
  font-size: 16px;
}

/* ----------------------------------------------------------- */
/* QUOTE                                                       */
/* ----------------------------------------------------------- */
.section--quote {
  background: var(--bg-warm);
  max-width: none;
  padding: clamp(80px, 11vw, 140px) var(--pad);
  text-align: center;
  position: relative;
}
.section--quote::before,
.section--quote::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--accent-d);
  opacity: 0.5;
}
.section--quote::before { top: 50px; }
.section--quote::after  { bottom: 50px; }

.quote {
  margin: 0 auto;
  max-width: 26ch;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
  position: relative;
}
.quote p { margin: 0; }
.quote__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5em;
  line-height: 0;
  color: var(--accent-d);
  position: relative;
  top: 0.18em;
  margin-right: 0.05em;
}
.quote figcaption {
  margin-top: 30px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

/* ----------------------------------------------------------- */
/* KONTAKT                                                     */
/* ----------------------------------------------------------- */
.section--kontakt { border-top: 1px solid var(--line-soft); }
.kontakt__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.kontakt__intro .section__title { margin-top: 8px; }
.kontakt__lede {
  margin: 24px 0 36px;
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  text-wrap: pretty;
}
.kontakt__facts {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}
.kontakt__facts div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.kontakt__facts dt {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.kontakt__facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}
.kontakt__facts a {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .45s ease;
}
.kontakt__facts a:hover {
  background-size: 0% 1px;
  background-position: 100% 100%;
}

/* form */
.kontakt__form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(28px, 3.5vw, 44px);
  display: grid;
  gap: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.kontakt__form label {
  display: grid;
  gap: 8px;
}
.kontakt__form label > span {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.kontakt__form input,
.kontakt__form textarea {
  font: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--ink);
  outline: none;
  transition: border-color .35s ease;
  border-radius: 0;
}
.kontakt__form input:focus,
.kontakt__form textarea:focus {
  border-color: var(--ink);
}
.kontakt__form textarea {
  resize: vertical;
  min-height: 110px;
}
.form__full { width: 100%; }

.form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.form__error,
.form__success {
  margin: 0;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
}
.form__success {
  background: rgba(99, 143, 81, 0.12);
  border: 1px solid rgba(99, 143, 81, 0.28);
  color: var(--ink);
}
.form__error {
  background: rgba(168, 54, 54, 0.10);
  border: 1px solid rgba(168, 54, 54, 0.24);
  color: var(--ink);
}
.form__error a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn[disabled] {
  opacity: .65;
  cursor: wait;
}


.form__chips {
  border: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form__chips legend {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
  padding: 0;
  width: 100%;
}
.chip {
  position: relative;
  display: inline-block;
}
.chip input {
  position: absolute;
  opacity: 0; pointer-events: none;
}
.chip span {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .3s ease, background .3s ease, color .3s ease;
}
.chip:hover span { border-color: var(--ink); }
.chip input:checked + span {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.form__note {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.55;
}
.form__success {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--accent-d);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink);
  background: color-mix(in oklab, var(--accent) 12%, transparent);
}

/* ----------------------------------------------------------- */
/* FOOTER                                                      */
/* ----------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: #d8ccb8;
  padding: clamp(60px, 8vw, 100px) var(--pad) 40px;
}
.footer a { color: #f0e6d2; }
.footer a:hover { color: #fff; }

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 50px;
  border-bottom: 1px solid #3b3127;
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: #f5ecd5;
}
.footer__brand svg { width: 34px; height: 34px; color: #f5ecd5; }
.footer__tagline {
  margin: 0;
  justify-self: end;
  text-align: right;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.35;
  color: #d8ccb8;
  max-width: 40ch;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 50px 0;
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer__cols h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b0a48d;
  margin: 0 0 18px;
}
.footer__cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer__cols a {
  position: relative;
  font-family: var(--serif);
  font-size: 20px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  transition: color .25s ease, gap .35s ease;
}
.footer__cols a:hover { gap: 14px; }
.footer__ext { font-size: 14px; color: var(--accent); }
.footer__sub {
  margin: 8px 0 0;
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.5;
  color: #a8997d;
  max-width: 32ch;
}

.footer__bot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid #3b3127;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #a8997d;
  max-width: var(--maxw);
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------- */
/* RESPONSIVE                                                  */
/* ----------------------------------------------------------- */
@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .language-switch { justify-self: end; }
  .nav__burger { display: inline-block; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    padding: 24px var(--pad);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__links a { font-size: 22px; font-family: var(--serif); }
}

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .om__grid { grid-template-columns: 1fr; }
  .om__portrait-frame { max-width: 360px; }
  .terapi__grid { grid-template-columns: 1fr; }
  .approach__item { grid-template-columns: 70px 1fr; }
  .process { grid-template-columns: 1fr 1fr; gap: 30px; }
  .kontakt__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .footer__tagline { justify-self: start; text-align: left; }
  .footer__cols { grid-template-columns: 1fr; gap: 30px; }
  .switcher__panel { grid-template-columns: 1fr; }
  .switcher__tab { padding: 18px 20px; }
  .acc > summary { grid-template-columns: 50px 1fr 30px; padding: 22px 0; }
  .acc__body > p { padding-left: calc(50px + clamp(14px, 3vw, 24px)); padding-right: 20px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .form__row { grid-template-columns: 1fr; }
  .om__facts, .kontakt__facts { grid-template-columns: 1fr; }
  .card__foot { flex-direction: column; align-items: flex-start; gap: 14px; }
  .process { grid-template-columns: 1fr; }
  .footer__bot { flex-direction: column; gap: 8px; }
  .switcher__tabs { grid-template-columns: 1fr; }
  .switcher__indicator { width: 100%; height: 1px; }
  .switcher__tabs[data-active="par"] .switcher__indicator { transform: translateY(0) translateX(0); }
  .switcher__foot { flex-direction: column; align-items: stretch; }
  .price__reveal { left: 0; right: 0; min-width: 0; }
}


/* ──────────────────────  Lokal SEO / FAQ  ────────────────────── */
.section--geo,
.section--faq {
  border-top: 1px solid var(--line-soft);
}

.geo__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(24px, 4vw, 44px);
}

.geo-card,
.faq__item {
  background: rgba(255, 251, 244, .72);
  border: 1px solid rgba(54, 43, 33, .12);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(64, 43, 24, .08);
}

.geo-card {
  padding: clamp(22px, 3vw, 30px);
}

.geo-card__kicker {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.geo-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.04;
  color: var(--ink);
}

.geo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 44px);
}

.faq__item {
  padding: 0;
  overflow: hidden;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--ink);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
}

.faq__item[open] summary::after { content: "–"; }

.faq__item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 920px) {
  .geo__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .nav { gap: 14px; }
  .language-switch { padding: 4px 6px; gap: 4px; }
  .language-switch a { min-width: 25px; min-height: 25px; }
}


/* ──────────────────────  SEO landing pages / related links  ────────────────────── */
.landing-main .section { max-width: var(--maxw); margin-inline: auto; padding-left: var(--pad); padding-right: var(--pad); }
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-mute);
}
.breadcrumbs a { color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.breadcrumbs a:hover { color: var(--accent-d); border-color: var(--accent-d); }
.landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.landing-title { margin-bottom: 22px; }
.landing-aside {
  background: rgba(255, 251, 244, .7);
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  padding: clamp(18px, 2.5vw, 26px);
  box-shadow: 0 30px 90px rgba(64, 43, 24, .08);
}
.landing-aside img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
  filter: saturate(.9) contrast(.96);
}
.landing-aside p {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: .03em;
}
.section--landing-cards { padding-top: 0; }
.landing-content__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.landing-content article {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.landing-content h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}
.landing-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.landing-content li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}
.landing-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 13px;
  height: 1px;
  background: var(--accent-d);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.related-card,
.related-links a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 190px;
  padding: clamp(20px, 2.5vw, 28px);
  background: rgba(255, 251, 244, .72);
  border: 1px solid rgba(54, 43, 33, .12);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(64, 43, 24, .07);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.related-card:hover,
.related-links a:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--accent) 65%, var(--line));
  box-shadow: 0 30px 85px rgba(64, 43, 24, .12);
}
.related-card span,
.related-links a span:first-child {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-d);
}
.related-card strong,
.related-links a {
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
}
.related-card em {
  margin-top: auto;
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.related-links a { min-height: 132px; justify-content: space-between; }
.related-links a span { font-family: var(--sans); font-size: 18px; color: var(--accent-d); }
@media (max-width: 1100px) {
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  .landing-hero__grid,
  .landing-content__grid,
  .related-links { grid-template-columns: 1fr; }
  .landing-aside { max-width: 440px; }
}
@media (max-width: 620px) {
  .related-grid { grid-template-columns: 1fr; }
  .related-card { min-height: 0; }
}


/* Start page polish: keep duplicate portrait/status items hidden. */
.hero__meta,
.hero__art { display: none !important; }


/* ----------------------------------------------------------- */
/* START PAGE HERO polish: warm animated line art              */
/* ----------------------------------------------------------- */
.hero {
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 42%;
  width: min(52vw, 640px);
  height: min(52vw, 640px);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 20%, transparent) 0%, color-mix(in oklab, var(--accent) 9%, transparent) 34%, transparent 74%);
  filter: blur(18px);
  opacity: .7;
  pointer-events: none;
  z-index: 0;
}
.hero__grid.hero__grid--alive {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  max-width: 1180px;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__decor {
  position: relative;
  min-height: 520px;
  z-index: 1;
}
.hero__decor-card {
  position: relative;
  min-height: 520px;
  height: 100%;
  border: 1px solid color-mix(in oklab, var(--line) 82%, white 18%);
  border-radius: 32px 32px 120px 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.12)),
    linear-gradient(135deg, color-mix(in oklab, var(--paper) 78%, white 22%), color-mix(in oklab, var(--bg-soft) 90%, var(--bg-warm) 10%));
  box-shadow:
    0 30px 80px rgba(97, 76, 42, 0.09),
    inset 0 1px 0 rgba(255,255,255,.55);
}
.hero__decor-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(216, 201, 170, .65);
  border-radius: 24px 24px 108px 24px;
  pointer-events: none;
}
.hero__decor-card::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 108px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120,98,70,.35), transparent);
}
.hero__decor-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .7;
  pointer-events: none;
}
.hero__decor-glow--a {
  width: 210px;
  height: 210px;
  top: 46px;
  right: 14px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 22%, white 12%) 0%, color-mix(in oklab, var(--accent) 10%, transparent) 48%, transparent 75%);
}
.hero__decor-glow--b {
  width: 160px;
  height: 160px;
  left: 14px;
  bottom: 34px;
  background: radial-gradient(circle, rgba(255,255,255,.85) 0%, rgba(255,255,255,.3) 45%, transparent 74%);
}
.hero__decor-glow--c {
  width: 210px;
  height: 210px;
  right: 70px;
  bottom: 70px;
  background: radial-gradient(circle, color-mix(in oklab, var(--bg-warm) 82%, white 18%) 0%, rgba(235,224,200,.24) 40%, transparent 76%);
}
.hero__lines {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  color: color-mix(in oklab, var(--accent-d) 66%, var(--ink-mute) 34%);
  opacity: .82;
  pointer-events: none;
  transition: transform .2s ease-out;
}
.hero__lines path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  animation: drawLine 3.3s cubic-bezier(.2,.7,.2,1) forwards, lineDrift 14s ease-in-out infinite;
}
.hero__lines .ln-1 { animation-delay: .10s, 0s; }
.hero__lines .ln-2 { animation-delay: .28s, .8s; }
.hero__lines .ln-3 { animation-delay: .46s, 1.6s; }
.hero__lines .ln-4 { animation-delay: .64s, .5s; }
.hero__lines .ln-5 { animation-delay: .82s, 1.2s; }
.hero__lines .ln-6 { animation-delay: 1.00s, .4s; opacity: .76; }
.hero__lines .ln-7 { animation-delay: 1.18s, 1.1s; opacity: .68; }
.hero__decor-copy {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  display: grid;
  gap: 6px;
  z-index: 2;
}
.hero__decor-kicker {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-d);
}
.hero__decor-copy p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  color: color-mix(in oklab, var(--ink) 84%, var(--accent-d) 16%);
}
.hero__ticker {
  margin-top: 18px;
}
@keyframes lineDrift {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0, 6px, 0); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero__decor {
    animation: heroFloat 12s ease-in-out infinite;
  }
  .hero__decor-glow--a {
    animation: glowShift 14s ease-in-out infinite;
  }
  .hero__decor-glow--c {
    animation: glowShift 14s ease-in-out infinite reverse;
  }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes glowShift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(10px,-8px,0) scale(1.04); }
}
@media (max-width: 980px) {
  .hero__grid.hero__grid--alive {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero__content {
    max-width: 760px;
  }
  .hero__decor {
    min-height: 300px;
    max-width: 560px;
  }
  .hero__decor-card {
    min-height: 300px;
    border-radius: 28px;
  }
  .hero__decor-card::before {
    border-radius: 20px;
  }
}
@media (max-width: 640px) {
  .hero::before {
    left: 18%;
    width: 88vw;
    height: 88vw;
    opacity: .55;
  }
  .hero__decor {
    min-height: 250px;
  }
  .hero__decor-card {
    min-height: 250px;
  }
  .hero__decor-copy {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
  .hero__decor-copy p {
    font-size: 22px;
  }
}


/* ----------------------------------------------------------- */
/* HERO after decorative line removal                          */
/* ----------------------------------------------------------- */
.hero {
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 12%;
  width: min(46vw, 640px);
  height: min(42vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 10%, transparent) 0%, color-mix(in oklab, var(--accent) 4%, transparent) 42%, transparent 76%);
  filter: blur(20px);
  opacity: .42;
  pointer-events: none;
  z-index: 0;
}
.hero__grid.hero__grid--alive {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 860px;
  position: relative;
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
}
.hero__ticker {
  position: relative;
  z-index: 2;
}
/* ----------------------------------------------------------- */
/* Premium thank-you modal                                     */
/* ----------------------------------------------------------- */
body.is-modal-open {
  overflow: hidden;
}
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}
.site-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 34, 26, 0.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-modal__dialog {
  position: relative;
  max-width: min(560px, calc(100vw - 32px));
  margin: min(12vh, 100px) auto 24px;
  padding: 34px 34px 30px;
  background: linear-gradient(180deg, rgba(250,245,233,.96), rgba(245,239,226,.98));
  border: 1px solid color-mix(in oklab, var(--line) 82%, white 18%);
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(42,34,26,.18), inset 0 1px 0 rgba(255,255,255,.55);
}
.site-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(216,201,170,.62);
  pointer-events: none;
}
.site-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.site-modal__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-d);
}
.site-modal__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 11ch;
}
.site-modal__text,
.site-modal__sub {
  max-width: 42ch;
  color: var(--ink-soft);
}
.site-modal__text {
  margin: 18px 0 10px;
  font-size: 17px;
  line-height: 1.65;
}
.site-modal__sub {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.6;
}
.site-modal__sub a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.site-modal .btn {
  min-width: 142px;
}
@media (max-width: 640px) {
  .site-modal__dialog {
    margin: 16vh 16px 20px;
    padding: 28px 22px 22px;
  }
  .site-modal__title {
    max-width: none;
    font-size: 34px;
  }
}




/* SEO content cards */
.related-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.concern-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.12));
  box-shadow: 0 20px 50px rgba(97, 76, 42, 0.055);
}
.concern-card span {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-d);
}
.concern-card h2,
.concern-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(27px, 2.4vw, 36px);
  line-height: 1.05;
}
.concern-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}
.concern-note {
  max-width: 74ch;
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 1px solid var(--accent-d);
  background: rgba(255,255,255,.28);
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (max-width: 1180px) {
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .concern-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .related-grid,
  .concern-grid { grid-template-columns: 1fr; }
}
