:root {
  --ink: #0f100c;
  --paper: #f4efe4;
  --cream: #e8dcc4;
  --olive: #2d3224;
  --deep: #1a1c14;
  --gold: #c3b76d;
  --brick: #3a2f28;
  --shadow: rgba(15, 16, 12, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--paper);
  background: var(--deep);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--cream);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 4vw;
  background: linear-gradient(180deg, #12140f 0%, #0c0d0a 100%);
  border-bottom: 2px solid var(--gold);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand span {
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  border-radius: 4px;
}

.nav-toggle i {
  font-size: 1.5rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.disclaimer-bar {
  background: var(--brick);
  color: var(--cream);
  padding: 0.6rem 4vw;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(195, 183, 109, 0.35);
}

.page-hero {
  position: relative;
  min-height: 52vh;
  min-height: 52dvh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: var(--ink);
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../image/picture.jpg");
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 11, 8, 0.88) 0%, rgba(10, 11, 8, 0.55) 45%, rgba(10, 11, 8, 0.78) 100%);
  pointer-events: none;
}

.page-hero .hero__inner {
  padding-top: clamp(4rem, 10vw, 5.5rem);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: var(--ink);
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../image/picture.jpg");
}

.hero.hero--home,
.page-hero.hero--home {
  background-position: 12% 52%;
}

.hero.hero--movement,
.page-hero.hero--movement {
  background-position: 78% 38%;
}

.hero.hero--sessions,
.page-hero.hero--sessions {
  background-position: 44% 22%;
}

.hero.hero--breath,
.page-hero.hero--breath {
  background-position: 30% 78%;
}

.hero.hero--odense,
.page-hero.hero--odense {
  background-position: 66% 62%;
}

.hero.hero--contacts,
.page-hero.hero--contacts {
  background-position: 18% 28%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 11, 8, 0.88) 0%, rgba(10, 11, 8, 0.55) 45%, rgba(10, 11, 8, 0.75) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: auto;
  padding: clamp(5rem, 12vw, 7rem) 4vw 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.85rem);
  line-height: 1.15;
  color: var(--cream);
  max-width: 18ch;
  text-shadow: 0 2px 18px var(--shadow);
}

.hero .lede {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: var(--paper);
  max-width: 38ch;
}

.newsletter-box {
  max-width: 420px;
  padding: 1rem 1.25rem;
  background: rgba(26, 28, 20, 0.82);
  border: 1px solid var(--gold);
  border-radius: 6px;
}

.newsletter-box label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  color: var(--cream);
}

.newsletter-box input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--cream);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.newsletter-box .newsletter-box__checks {
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--cream);
}

.newsletter-box .newsletter-box__checks label {
  display: inline;
  margin-bottom: 0;
  font-weight: 400;
}

.newsletter-box .newsletter-box__checks a {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
}

button.btn {
  appearance: none;
}

.btn:hover {
  background: transparent;
  color: var(--gold);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
}

.btn--ghost:hover {
  background: var(--gold);
  color: var(--ink);
}

main {
  overflow-x: hidden;
}

.section {
  padding: clamp(2.5rem, 6vw, 4rem) 4vw;
}

.section--dark {
  background: var(--olive);
  color: var(--paper);
}

.section--light {
  background: var(--paper);
  color: var(--ink);
}

.section--light a {
  color: #5c4a1a;
}

.section--light a:hover {
  color: var(--ink);
}

.section--accent {
  background: linear-gradient(135deg, #252a1f 0%, #1a1c14 100%);
  border-top: 1px solid rgba(195, 183, 109, 0.4);
  border-bottom: 1px solid rgba(195, 183, 109, 0.4);
}

.section--brick {
  background: var(--brick);
  color: var(--cream);
}

.section h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  margin: 0 0 1rem;
  color: var(--gold);
}

.section--light h2 {
  color: #4a3f1f;
}

.wrap {
  width: min(980px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .split--2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.figure-block {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 12px 40px var(--shadow);
  aspect-ratio: 4 / 3;
  max-height: 420px;
}

.figure-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crop-home-strip {
  object-position: 88% 42%;
}

.crop-movement {
  object-position: 52% 30%;
}

.crop-sessions {
  object-position: 22% 55%;
}

.crop-breath {
  object-position: 70% 70%;
}

.crop-odense {
  object-position: 40% 18%;
}

.crop-contacts {
  object-position: 55% 45%;
}

.callout {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--gold);
  background: rgba(0, 0, 0, 0.2);
}

.section--light .callout {
  background: rgba(195, 183, 109, 0.15);
  border-color: #6b5b24;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.pill-list li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  font-size: 0.9rem;
}

.section--light .pill-list li {
  border-color: #6b5b24;
  color: var(--ink);
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.icon-list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.icon-list i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.section--light .icon-list i {
  color: #5c4a1a;
}

.grid-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  padding: 1.25rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(195, 183, 109, 0.35);
}

.section--light .card {
  background: #fffdf6;
  border-color: rgba(74, 63, 31, 0.25);
  color: var(--ink);
}

.card h3 {
  margin-top: 0;
  font-size: 1.15rem;
  color: var(--gold);
}

.section--light .card h3 {
  color: #4a3f1f;
}

table.calendar {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.95rem;
}

table.calendar th,
table.calendar td {
  border: 1px solid rgba(195, 183, 109, 0.35);
  padding: 0.6rem;
  text-align: left;
}

.section--light table.calendar th,
.section--light table.calendar td {
  border-color: rgba(74, 63, 31, 0.25);
}

.faq details {
  border: 1px solid rgba(195, 183, 109, 0.35);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.65rem;
  background: rgba(0, 0, 0, 0.15);
}

.section--light .faq details {
  border-color: rgba(74, 63, 31, 0.25);
  background: #fffdf6;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--cream);
}

.section--light .faq summary {
  color: var(--ink);
}

.site-footer {
  padding: 2rem 4vw 2.5rem;
  background: #0a0b08;
  color: var(--cream);
  border-top: 2px solid var(--gold);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--gold);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: #12140f;
  color: var(--cream);
  border-top: 2px solid var(--gold);
  padding: 1rem 4vw 1.25rem;
  box-shadow: 0 -8px 30px var(--shadow);
}

.cookie-banner__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(195, 183, 109, 0.35);
  display: none;
}

.cookie-panel.is-open {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #444;
  border-radius: 999px;
  transition: 0.2s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--paper);
  border-radius: 50%;
  transition: 0.2s;
}

.switch input:checked + .slider {
  background: var(--gold);
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
}

.switch input:disabled + .slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-stack label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.form-stack input,
.form-stack textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(195, 183, 109, 0.45);
  background: var(--paper);
  color: var(--ink);
  margin-bottom: 1rem;
}

.form-stack textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.map-wrap {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.map-wrap iframe {
  width: 100%;
  height: min(420px, 60vh);
  display: block;
}

.success-panel {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4vw;
}

.success-card {
  max-width: 520px;
  padding: 2rem;
  background: var(--olive);
  border: 2px solid var(--gold);
  border-radius: 10px;
  text-align: center;
}

.policy-page h2 {
  margin-top: 2rem;
}

.policy-page ul {
  padding-left: 1.25rem;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 0 0;
    top: 5.5rem;
    background: rgba(10, 11, 8, 0.97);
    padding: 1rem 4vw 2rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    border-bottom: 2px solid var(--gold);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 380px) {
  body {
    font-size: 1rem;
  }

  .brand span {
    max-width: 12rem;
    line-height: 1.2;
  }
}

.split-showcase {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.split-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, min(45vw, 500px));
  align-items: stretch;
  align-content: start;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  column-gap: clamp(0.75rem, 2.5vw, 1.5rem);
}

.split-showcase__text {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}

.split-showcase__block {
  flex: 1;
  padding: clamp(1.25rem, 3.5vw, 2.25rem) clamp(1rem, 3vw, 2rem);
  text-align: center;
  font-family: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #121212;
}

.split-showcase__block--01 {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-showcase__block--02 {
  background: #e4e2dc;
  border-top: 3px solid #c3b76d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1.15;
}

.split-showcase__num {
  margin: 0 0 0.35rem;
  font-size: clamp(2.75rem, 9vw, 5.25rem);
  font-weight: 800;
  line-height: 1;
  color: #c3b76d;
  letter-spacing: -0.02em;
}

.split-showcase__head {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  font-weight: 700;
  color: #1a1a1a;
}

.split-showcase__copy {
  margin: 0 auto;
  max-width: 36ch;
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.65;
  color: #2a2a2a;
}

.split-showcase__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #dcd8ce;
}

.split-showcase__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .split-showcase__grid {
    grid-template-columns: 1fr;
  }

  .split-showcase__media {
    order: -1;
    padding: 0.75rem clamp(0.75rem, 4vw, 1rem) 0.5rem;
    max-width: min(500px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .split-showcase__media img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .split-showcase__block {
    padding: 1.25rem 0.85rem;
  }

  .split-showcase__copy {
    max-width: none;
  }
}
