/* Wieder leben — aligned with original SPA (Tailwind palette & rhythm) */

:root {
  --color-bg: #f7f4ef;
  --color-surface: #ede9e1;
  --color-primary: #2c4a3e;
  --color-primary-hover: #1e3329;
  --color-deep: #0d1f1a;
  --color-text: #1a1a1a;
  --color-muted: #5a5248;
  --color-soft: #8a7a66;
  --color-border: #d4c9b8;
  --color-gold: #c8b98a;
  --color-gold-bright: #e8d4a0;
  --color-link: #2c4a3e;
  --max: 72rem; /* max-w-6xl */
  --pad: 1.25rem;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: Inter, system-ui, -apple-system, sans-serif;
  /* Type scale (matches SPA visual density; 18px root → text-4xl ≈ 40.5px) */
  --text-xs: 0.8125rem;   /* ~14.6px */
  --text-sm: 0.9375rem;   /* ~16.9px */
  --text-base: 1.0625rem; /* ~19px */
  --text-lg: 1.1875rem;   /* ~21px */
  --text-xl: 1.3125rem;   /* ~23.5px */
  --text-2xl: 1.625rem;   /* ~29px */
  --text-4xl: 2.375rem;   /* ~42.5px — slightly above source 40.5 */
  --text-5xl: 3.25rem;    /* ~58.5px */
  --text-7xl: 4.75rem;
  --text-8xl: 6.25rem;
  --weight-display: 500;  /* Cormorant reads thin at 300 on many screens */
  --weight-body: 400;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
  /* 18px root: SPA text-4xl (2.25rem) renders ~40.5px as measured */
  font-size: 18px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-body);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  /* subpixel AA = fuller strokes than antialiased/grayscale */
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* —— Header / Nav —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-nav {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 4rem;
  padding: 0;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  white-space: nowrap;
}

.site-logo:hover {
  opacity: 0.85;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-list a {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--color-primary);
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0;
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  padding: 1rem 1.25rem 1.25rem;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-muted);
}

.site-header:has(#nav-open:checked) .nav-mobile {
  display: flex;
}

#nav-open {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .nav-list {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* —— Main —— */
main {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* —— Typography —— */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: var(--weight-display);
  line-height: 1.12;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

h2 {
  font-size: var(--text-4xl);
  line-height: 1.12;
  margin-bottom: 2rem;
  color: var(--color-primary);
  font-weight: var(--weight-display);
}

@media (min-width: 768px) {
  h2 {
    font-size: var(--text-5xl);
  }
}

h2 em {
  font-style: italic;
  font-weight: 500;
}

h3 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-display);
}


p {
  margin: 0 0 1rem;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-soft);
  margin: 0 0 1rem;
}

.eyebrow-gold,
.section-dark .eyebrow,
.eyebrow-on-dark {
  color: var(--color-gold) !important;
}

.lead,
p.lead {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-muted);
  line-height: 1.7;
}

/* —— Buttons —— */
.button,
button.button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.05rem 2.1rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.button:hover,
a.button:hover {
  background: var(--color-primary-hover);
  color: #fff;
  text-decoration: none;
}

.button-light {
  background: var(--color-primary);
  color: #fff;
}

.button-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.button-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* —— Hero —— */
.hero-block {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 4rem;
  color: #fff;
  background:
    linear-gradient(
      to top,
      rgba(13, 31, 26, 0.9) 0%,
      rgba(13, 31, 26, 0.5) 50%,
      rgba(13, 31, 26, 0.1) 100%
    ),
    url("/static/gen_hero-sailing-yacht-c3166e.webp") center/cover no-repeat;
}

.hero-block .hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: 0 0 6rem;
  animation: fadeUp 1.2s ease forwards;
}

@media (min-width: 768px) {
  .hero-block .hero-inner {
    padding-bottom: 9rem;
  }
}

.hero-block .eyebrow {
  color: var(--color-gold);
  font-size: var(--text-sm);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-block h1 {
  color: #fff;
  font-size: var(--text-5xl);
  line-height: 1.05;
  font-weight: var(--weight-display);
  max-width: 48rem;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

@media (min-width: 768px) {
  .hero-block h1 {
    font-size: var(--text-7xl);
  }
}

@media (min-width: 1024px) {
  .hero-block h1 {
    font-size: var(--text-8xl);
  }
}

.hero-block h1 em,
.hero-block h1 .hero-live {
  font-style: italic;
  font-weight: 600; /* source: italic font-semibold on "leben." */
  color: var(--color-gold-bright);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
}

.hero-block p {
  display: inline-block;
  color: #fff;
  max-width: 36rem;
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.65;
  margin: 0 0 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(13, 31, 26, 0.5);
  backdrop-filter: blur(6px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Sections —— */
section,
.section {
  padding: 6rem var(--pad);
}

@media (min-width: 768px) {
  section,
  .section {
    padding: 9rem var(--pad);
  }
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-dark {
  background: var(--color-primary);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark h2 {
  font-weight: var(--weight-display);
}

.section-dark h2 em {
  font-weight: 500;
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.82);
}

.section-muted {
  background: var(--color-surface);
}

.lede-dark {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
}

.text-gold {
  color: var(--color-gold) !important;
}

.italic {
  font-style: italic;
}

/* —— Grids & cards —— */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: 0;
  height: 100%;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-weight: 400;
}

.card p:last-child {
  margin-bottom: 0;
}

.card-dark {
  background: var(--color-primary);
  border-color: transparent;
  color: #fff;
}

.card-dark h3 {
  color: #fff;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.card-featured {
  border: 2px solid var(--color-border);
  box-shadow: none;
  padding: 2.5rem;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.card-featured:hover {
  border-color: var(--color-primary);
}

.direction-card h3 {
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-primary);
}

.card .price {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-gold);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.card-dark .price {
  color: var(--color-gold);
}

.price-dark {
  color: var(--color-primary) !important;
}

.card .meta {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-soft);
  margin-bottom: 1rem;
}

.card-dark .meta {
  color: var(--color-gold);
}

/* Packages */
.packages {
  max-width: none;
  width: 100%;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.packages.grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .packages.grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.package-card {
  position: relative;
  padding: 2.5rem;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.package-card.card-dark {
  background: var(--color-primary);
}

.package-card:not(.card-dark) {
  background: #fff;
}

.package-card h3 em {
  font-style: italic;
  font-weight: inherit;
}

.package-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-gold);
  color: var(--color-text);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

/* Sonderformat: full width, wooden sailing yacht photo, below the two main packages */
.package-card--special {
  width: 100%;
  max-width: none;
  color: #fff;
  margin-bottom: 0;
}

.package-card--special.card-dark {
  background:
    linear-gradient(180deg, rgba(20, 32, 26, 0.72), rgba(20, 32, 26, 0.88)),
    url("/static/stock_segelyacht-holz-0.jpg") center / cover no-repeat;
}

.package-card--special h3 {
  color: #fff;
}

.package-card--special p {
  color: rgba(255, 255, 255, 0.8);
}

.package-card--special .meta {
  color: var(--color-gold);
}

.special-options {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .special-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.special-options li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.special-icon {
  font-size: 1.25rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.special-options strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.35rem;
}

.special-options span:not(.special-icon) {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.6;
}

.note-muted {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: var(--text-sm);
  color: var(--color-soft);
}

/* Method tiles */
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

@media (min-width: 640px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .method-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.method-tile {
  background: var(--color-primary);
  padding: 2rem;
  transition: background 0.2s;
}

.method-tile:hover {
  background: var(--color-primary-hover);
}

.method-tile::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: 1.5rem;
  transition: width 0.5s;
}

.method-tile:hover::before {
  width: 4rem;
}

.method-tile.method-tile--empty::before,
.method-tile.method-tile--empty:hover::before {
  content: none;
  display: none;
  width: 0;
  height: 0;
  margin: 0;
  background: transparent;
}

.method-tile.method-tile--empty:hover {
  background: var(--color-primary);
}

.method-tile h3 {
  color: #fff;
  font-size: var(--text-xl); /* text-xl */
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.method-tile p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* How-it-works box */
.how-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2.5rem;
  margin: 0 0 4rem;
  max-width: 48rem;
}

.how-box .eyebrow {
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.how-box p {
  margin: 0 0 1.25rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.how-box p:last-child {
  margin-bottom: 0;
}

.how-box strong {
  color: #fff;
  font-weight: 400;
}

/* —— Split (Ansatz) —— */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.split .lead,
.split p {
  color: var(--color-muted);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.7;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.split-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--color-primary);
  color: #fff;
  padding: 1.5rem 2rem;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.split-badge .badge-1to1 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}

.split-badge span:not(.badge-1to1) {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.border-top-soft {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  margin-top: 0.5rem;
}

.border-top-soft > .eyebrow {
  margin-bottom: 1.25rem;
}

.border-top-soft > p {
  color: var(--color-primary) !important;
  font-size: 1rem !important;
}

.focus-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.focus-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.focus-item::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--color-gold);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.focus-item strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--color-primary);
  margin-bottom: 0.15rem;
}

.focus-item span {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 400;
  line-height: 1.6;
}

/* Place quote (programme) */
/* Place quote: [Berge] [Text] [Zürich] — full width */
.place-quote {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 0 2.5rem;
  width: 100%;
  max-width: none;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(44, 74, 62, 0.1);
  background: #fff;
}

@media (min-width: 768px) {
  .place-quote {
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: stretch;
    min-height: 16rem;
  }
}

.place-quote-img,
.place-quote img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .place-quote-img,
  .place-quote img {
    height: 100%;
    min-height: 16rem;
  }
}

.place-quote p {
  margin: 0;
  padding: 2rem 2.25rem;
  color: var(--color-primary);
  align-self: center;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  border-left: 4px solid var(--color-gold);
  border-right: 4px solid var(--color-gold);
}

@media (max-width: 767px) {
  .place-quote p {
    border-left: 0;
    border-right: 0;
    border-top: 4px solid var(--color-gold);
    border-bottom: 4px solid var(--color-gold);
    order: 2;
  }

  .place-quote-img--left {
    order: 1;
  }

  .place-quote-img--right {
    order: 3;
  }
}

/* —— Team —— */
.team-card {
  background: #fff;
  border: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-card .body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-card h3 {
  color: var(--color-primary);
  font-size: var(--text-2xl);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.team-card .role {
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.team-card .body > p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Team layout: side-by-side on tablet+desktop, stacked only on very small phones */
@media (max-width: 767px) {
  .team-grid {
    display: flex !important;
    flex-direction: column;
    gap: 3rem;
  }

  .team-card {
    height: auto !important;
  }

  .team-grid .team-card:last-child .body {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
  }

  .team-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .team-card .body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .team-card .team-video {
    margin-top: auto;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

.team-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 1.5rem;
  overflow: hidden;
  background: #000;
}

.team-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* —— Places —— */
.place-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.place-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s;
}

.place-card:hover img {
  transform: scale(1.05);
}

.place-card .label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
  color: #fff;
}

.place-card .label h3 {
  color: #fff;
  margin: 0 0 0.25rem;
  font-size: var(--text-xl);
}

.place-card .label p {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* —— Lists —— */
.check-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 400;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--color-gold);
}

.direction-card .check-list li {
  color: var(--color-muted);
}

/* —— Contact —— */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-split {
    grid-template-columns: 20rem 1fr;
    gap: 4rem;
  }
}

.orient-card {
  background: var(--color-primary);
  color: #fff;
  padding: 2rem;
  height: 100%;
}

.orient-card h3 {
  color: #fff;
  font-size: var(--text-2xl);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.orient-card h3 em {
  font-style: italic;
  font-weight: 400;
}

.orient-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.65;
}

.orient-prices {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.orient-price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--text-sm);
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.5);
}

.orient-price-note {
  font-size: var(--text-xs) !important;
  color: rgba(255, 255, 255, 0.3) !important;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.orient-foot {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: var(--text-xs) !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-bottom: 0;
}

.contact-form-col h2 {
  margin-bottom: 1rem;
}

.contact-form-col .lead {
  margin-bottom: 2rem;
}

/* Form */
.form-panel {
  background: transparent;
  border: 0;
  padding: 0;
  max-width: none;
  margin: 0;
}

.form-panel label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-soft);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-panel .field {
  margin-bottom: 1.5rem;
}

.form-panel input[type="text"],
.form-panel input[type="email"],
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  background: #fff;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text);
  border-radius: 0;
  transition: border-color 0.2s;
}

.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-panel .field.is-invalid input[type="text"],
.form-panel .field.is-invalid input[type="email"],
.form-panel .field.is-invalid textarea {
  border-color: #b33a3a;
  background: #fff8f7;
}

.form-panel .field.is-invalid .choice-row {
  outline: 1px solid rgba(179, 58, 58, 0.45);
  outline-offset: 4px;
  border-radius: 2px;
}

.field-error {
  margin: 0.45rem 0 0;
  font-size: var(--text-xs);
  font-weight: 500;
  color: #b33a3a;
  letter-spacing: 0.02em;
  text-transform: none;
}

.form-panel .field {
  scroll-margin-top: 5.5rem;
}

.form-panel textarea {
  min-height: 96px;
  resize: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-note {
  font-size: var(--text-xs);
  color: var(--color-soft);
  margin-top: 1rem;
  text-align: center;
}

.form-success {
  background: #e6f4ea;
  color: #2c4a3e;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-success:not([hidden]) {
  display: block;
}

.form-error {
  background: #fff0f0;
  color: #b33a3a;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-error:not([hidden]) {
  display: block;
}

#submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.choice {
  display: inline-flex !important;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: var(--text-sm) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--color-muted) !important;
  cursor: pointer;
  margin: 0 !important;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.choice input {
  position: absolute;
  opacity: 0;
  width: 0 !important;
  height: 0;
  pointer-events: none;
}

.choice::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choice:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff !important;
}

.choice:has(input:checked)::before {
  border-color: var(--color-gold);
  background: var(--color-gold);
  box-shadow: inset 0 0 0 2px var(--color-primary);
}

/* —— Footer —— */
.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.4);
  padding: 2.5rem var(--pad);
  margin-top: 0;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
  font-size: var(--text-sm);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    text-align: left;
  }
}

.footer-brand {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-text {
  font-size: var(--text-sm);
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--text-sm);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-places {
  font-size: var(--text-sm);
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

/* —— Markdown / prose pages —— */
.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose ul {
  padding-left: 1.2rem;
}

/* Impressum etc. — content pages */
main > .section .section-inner > h1 {
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  main > .section .section-inner > h1 {
    font-size: 3rem;
  }
}

/* —— YouTube (ForgeCMS element) —— */
.youtube-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 1.25rem 0;
  overflow: hidden;
  background: #000;
}

.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* —— Utility —— */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }

/* Offset for fixed header on in-page anchors */
:target {
  scroll-margin-top: 5rem;
}

section[id] {
  scroll-margin-top: 4rem;
}
