/* ------------------------------------------------------------
   Cupping Care, stylesheet
   Palet: papir / blæk / mat guld / oxblod (fra kopperne)
   Typografi: Cormorant Garamond (display) + Instrument Sans (brød)
   ------------------------------------------------------------ */

:root {
  --paper: #f3eee4;
  --paper-deep: #e9e2d3;
  --ink: #15120e;
  --ink-soft: #4c463c;
  --ink-mute: #8a8274;
  --line: rgba(21, 18, 14, 0.16);
  --gold: #a5874b;
  --gold-soft: #cdb67e;
  --oxblood: #5a1d1e;

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --measure: 34em;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  /* svag papirkornethed, gør fladerne mindre "digitale" */
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
p { margin: 0 0 1.1em; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.02; margin: 0; letter-spacing: -.005em; }
h1 em, h2 em, .lede em { font-style: italic; font-weight: 400; }

.wrap { position: relative; z-index: 1; padding-left: var(--gutter); padding-right: var(--gutter); }

/* små etiketter, bruges i stedet for ikoner overalt */
.label {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.label--gold { color: var(--gold); }
.num { font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: .04em; }

/* ---------- knapper: kantede, én streg, ingen gradienter ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 26px 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background .18s ease, color .18s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--oxblood); border-color: var(--oxblood); }
.textlink {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}
.textlink:hover { border-color: var(--ink); }

/* ---------- pulslinje fra logoet ---------- */
.pulse { display: block; width: 100%; height: 14px; color: var(--gold); }
.pulse line, .pulse polyline { stroke: currentColor; stroke-width: 1; fill: none; vector-effect: non-scaling-stroke; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-family: var(--serif); font-size: 21px; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 12px;
}
.wordmark img { width: 56px; height: 56px; border-radius: 50%; }
.site-head .wordmark img { display: none; }
.wordmark b { font-weight: 500; }
.wordmark span { color: var(--gold); font-weight: 400; }
.site-nav { display: flex; gap: 30px; align-items: center; }
.site-nav a { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: var(--ink-soft); }
.site-nav a:hover { color: var(--ink); }
.site-nav .btn { padding: 11px 18px 10px; font-size: 11.5px; margin-left: 8px; }
.nav-toggle { display: none; }

/* ---------- hero: billede i fuld bredde, der løber ud i papiret ---------- */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 55%; }
.hero__bg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 32%, rgba(243,238,228,.72) 47%, rgba(243,238,228,0) 68%); }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(243,238,228,0) 72%, var(--paper) 100%); }
.hero__text { position: relative; z-index: 1; padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px); max-width: 720px; }
.hero__eyebrow { display: flex; gap: 8px 14px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero__eyebrow span + span::before { content: "·"; margin-right: 14px; color: var(--gold); }
.hero__eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(56px, 8.6vw, 128px); line-height: .95; margin-bottom: 34px; }
.hero__lede { font-size: clamp(18px, 1.5vw, 21px); max-width: 30em; color: var(--ink-soft); margin-bottom: 36px; }
.hero__cta { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }

/* ---------- strimmel med ordene fra logoet ---------- */
.strip {
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line);
  padding: 16px var(--gutter);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 32px;
  font-family: var(--serif); font-size: 17px; letter-spacing: .22em; text-transform: uppercase;
}
.strip span::before { content: "·"; color: var(--gold); margin: 0 28px; }
.strip span:first-child::before { content: none; }
.strip small { font-family: var(--sans); font-size: 11.5px; letter-spacing: .18em; color: var(--ink-mute); }

/* ---------- sektioner ---------- */
.section { padding-top: clamp(64px, 9vw, 130px); padding-bottom: clamp(64px, 9vw, 130px); }
.section + .section { border-top: 1px solid var(--line); }
.section--deep { background: var(--paper-deep); }
.section__head { display: grid; grid-template-columns: 180px 1fr; gap: 24px; margin-bottom: clamp(32px, 4vw, 56px); align-items: baseline; }
.section__head h2 { font-size: clamp(38px, 5vw, 68px); max-width: 15em; }
.cols > *, .two > *, .steps > *, .faq > *, .book > *, .treat > * { min-width: 0; }

.cols { display: grid; grid-template-columns: 180px 1fr 1fr; gap: 24px clamp(24px, 4vw, 64px); }
.cols > .spacer { }
.lede { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px); line-height: 1.28; color: var(--ink); margin-bottom: 1em; }
.body { max-width: var(--measure); color: var(--ink-soft); }
.body strong { color: var(--ink); font-weight: 600; }

/* ---------- behandlingsliste: rækker, ikke kort ---------- */
.treat { display: grid; grid-template-columns: 180px 1fr .8fr; gap: clamp(24px, 4vw, 64px); align-items: start; }
.treat__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.treat__list li {
  display: grid; grid-template-columns: 56px 1fr; gap: 12px 20px;
  padding: 22px 0 20px; border-bottom: 1px solid var(--line);
}
.treat__list h3 { font-size: clamp(24px, 2.2vw, 30px); }
.treat__list p { margin: 6px 0 0; color: var(--ink-soft); max-width: 28em; font-size: 16px; grid-column: 2; }
.treat__aside { position: sticky; top: 96px; }
.treat__aside figure { margin: 0; }
.treat__aside img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 50%; }
.treat__aside figcaption { font-size: 12px; letter-spacing: .06em; color: var(--ink-mute); margin-top: 10px; }

/* ---------- to former ---------- */
.two { display: grid; grid-template-columns: 180px 1fr 1fr; gap: 24px clamp(24px, 4vw, 64px); }
.two article { border-top: 1px solid var(--ink); padding-top: 22px; }
.two article h3 { font-size: clamp(30px, 3vw, 44px); margin: 8px 0 18px; }
.two article p { color: var(--ink-soft); max-width: 30em; }
.two article ul { margin: 18px 0 0; padding: 0; list-style: none; }
.two article .note { margin-top: 22px; font-size: 14px; color: var(--ink-mute); border-top: 1px solid var(--line); padding-top: 14px; }
.two article li { padding: 9px 0; border-top: 1px solid var(--line); font-size: 15.5px; display: flex; gap: 14px; }
.two article li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; margin-top: .62em; }
.two figure { margin: 26px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end; }
.two figure img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 50%; }
.two figcaption { font-size: 12.5px; color: var(--ink-mute); line-height: 1.5; }

/* ---------- sådan foregår det ---------- */
.steps { display: grid; grid-template-columns: 180px 1fr .7fr; gap: 24px clamp(24px, 4vw, 64px); align-items: start; }
.steps__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.steps__list li { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 26px 0 24px; border-bottom: 1px solid var(--line); }
.steps__list h3 { font-size: clamp(26px, 2.4vw, 34px); margin-bottom: 10px; }
.steps__list p { margin: 0; color: var(--ink-soft); max-width: 30em; }
.steps__aside { position: sticky; top: 110px; padding-top: 26px; }
.steps__aside blockquote {
  margin: 0; padding: 0 0 0 22px; border-left: 1px solid var(--gold);
  font-family: var(--serif); font-size: clamp(26px, 2.4vw, 34px); line-height: 1.25; font-style: italic;
}
.steps__aside cite { display: block; font-style: normal; font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-top: 16px; }

/* ---------- godt at vide (faq) ---------- */
.faq { display: grid; grid-template-columns: 180px 1fr .7fr; gap: 24px clamp(24px, 4vw, 64px); align-items: start; }
.faq details { border-top: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--ink); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 20px 0; font-family: var(--serif); font-size: clamp(21px, 2vw, 26px);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-size: 26px; color: var(--gold); line-height: 1; }
.faq details[open] summary::after { content: "×"; }
.faq details p { color: var(--ink-soft); max-width: 32em; margin: 0 0 22px; font-size: 16px; }
.faq figure { margin: 0; }
.faq img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 50%; }
.faq figcaption { font-size: 12.5px; color: var(--ink-mute); margin-top: 10px; line-height: 1.5; }

/* ---------- praktisk / booking ---------- */
.book { display: grid; grid-template-columns: 180px 1fr 1fr; gap: 24px clamp(24px, 4vw, 64px); }
.book h2 { font-size: clamp(40px, 5.6vw, 84px); line-height: .98; }
.book h2 em { color: var(--gold); }
.book dl { margin: 0; border-top: 1px solid var(--ink); }
.book dl div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.book dt { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); padding-top: 4px; }
.book dd { margin: 0; font-family: var(--serif); font-size: 21px; }
.book dd a { text-decoration: none; border-bottom: 1px solid var(--gold); }
.book__cta { margin-top: 30px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.book__note { margin-top: 18px; font-size: 13.5px; color: var(--ink-mute); max-width: 30em; }
#mokio-booking { margin-top: 34px; min-height: 0; }

/* ---------- footer ---------- */
.site-foot {
  border-top: 1px solid var(--ink);
  padding-top: 40px; padding-bottom: 40px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: end;
  font-size: 13px; color: var(--ink-mute);
}
.site-foot .wordmark { font-size: 18px; }
.site-foot p { margin: 8px 0 0; }
.site-foot .tag { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink); }
.site-foot .right { text-align: right; }
.site-foot a { text-decoration: none; border-bottom: 1px solid var(--line); }
.site-foot .credit { margin-top: 18px; font-size: 12px; letter-spacing: .04em; }
.site-foot .credit a { color: var(--ink-soft); border-color: var(--gold); }
.site-foot .credit a:hover { color: var(--ink); }

/* ---------- blid indtoning ved scroll ---------- */
.js .reveal > * { opacity: 0; transform: translateY(14px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.6,.2,1); }
.js .reveal > *:nth-child(2) { transition-delay: .12s; }
.js .reveal.is-in > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal > * { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .cols, .two, .steps, .faq, .book, .treat { grid-template-columns: 1fr; }
  .steps__aside { position: static; }
  .section__head { grid-template-columns: 1fr; gap: 10px; }
  .treat__aside { position: static; max-width: 420px; }
  .two figure { max-width: 520px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { display: block; min-height: 0; }
  .hero__bg { position: relative; height: 52vw; min-height: 220px; }
  .hero__bg::before { background: linear-gradient(180deg, rgba(243,238,228,0) 30%, rgba(243,238,228,.6) 70%, var(--paper) 96%); }
  .hero__bg::after { display: none; }
  .hero__bg img { object-position: 60% 55%; }
  .hero__text { padding-top: 8px; padding-bottom: 48px; }
  .hero h1 { font-size: clamp(48px, 15vw, 72px); }
  .site-nav { display: none; }
  .nav-toggle { display: inline-block; }
  .site-nav.is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--ink);
    padding: 22px var(--gutter) 28px;
  }
  .site-nav.is-open .btn { margin-left: 0; }
  .strip { font-size: 14px; letter-spacing: .16em; }
  .strip span::before { margin: 0 12px; }
  .book dl div { grid-template-columns: 1fr; gap: 6px; }
  .site-foot { grid-template-columns: 1fr; }
  .site-foot .right { text-align: left; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
