/* ==========================================================================
   Cablesport Arena Pinneberg — Design System
   Prefix: cs | Theme: Sporty Fresh Condensed
   Basierend auf cablesport.de Live-Analyse (Maerz 2026)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Font Face — UniversLTPro-UltraCn (von cablesport.de)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'UniversLTPro-UltraCn';
  src: url('assets/fonts/univers-ultracondensed.woff2') format('woff2'),
       url('assets/fonts/univers-ultracondensed.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Tokens)
   -------------------------------------------------------------------------- */

:root {
  /* Colors — extrahiert von cablesport.de */
  --primary: #009DDF;         /* Haupt-Blau (Headings H1/H2, Footer, Buttons) */
  --primary-dark: #0E9BD8;    /* Button-Blau (CTA-Hintergrund) */
  --primary-hover: #0084BC;   /* Button-Hover */
  --secondary: #073345;       /* Dunkles Teal (H3 Display, dunkle Sections) */
  --accent: #009DDF;
  --accent-hover: #0084BC;
  --green: #65B32E;           /* Gruen (H4, Akzente) */
  --green-hover: #569A26;
  --yellow: #FFE606;          /* Gelb (Akzent-Buttons, Highlights) */
  --yellow-hover: #E6CF00;
  --tooltip: #DF1D84;         /* Pink (nur Tooltips auf Preisseite) */

  --base: #0A0A0A;            /* Body-Text fast-schwarz */
  --base-dark: #000000;
  --base-medium: #555555;
  --base-light: #E2E8F0;
  --base-ultra-light: #F7FAFC;
  --white: #FFFFFF;
  --black: #000000;

  /* Functional Colors */
  --success: #65B32E;
  --warning: #D69E2E;
  --error: #E53E3E;

  /* Typography — Live-Werte */
  --font-heading: 'UniversLTPro-UltraCn', 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-display: 'UniversLTPro-UltraCn', 'Roboto', sans-serif;
  --heading-weight: 400;      /* UniversLTPro-UltraCn ist condensed — weight 400 */
  --heading-line-height: 1.27;
  --body-line-height: 1.6;
  --body-weight: 400;

  /* Type Scale (Live-Werte) */
  --text-xs: 0.75rem;     /* 12px */
  --text-s: 0.875rem;     /* 14px */
  --text-m: 1.4rem;       /* 22.4px — Body-Basisgroesse auf Live-Seite */
  --text-l: 1.375rem;     /* 22px */
  --text-xl: 1.5rem;      /* 24px */

  /* ToBricks styleguide aliases from theme/variables.yml */
  --hero: clamp(56px, 10vw, 160px);
  --h1: clamp(48px, 7vw, 112px);
  --h2: clamp(36px, 5vw, 76px);
  --h3: clamp(28px, 3vw, 44px);
  --body: 20px;
  --body-font-size: 20px;
  --small: 16px;

  --heading-xs: 1.25rem;      /* 20px */
  --heading-s: 1.5rem;        /* 24px */
  --heading-m: 1.875rem;      /* 30px — H1, H2, H4 auf Live */
  --heading-l: 2.5rem;        /* 40px */
  --heading-xl: 4rem;         /* 64px */
  --heading-xxl: 6.875rem;    /* 110px — H3 Display "CABLESPORT HAMBURG" */

  /* Spacing Scale */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-s: 1rem;
  --space-m: 1.5rem;
  --space-l: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;     /* 80px — Live Section-Spacing */
  --space-4xl: 8rem;

  /* Section Spacing (Live: 80px zwischen Sections) */
  --section-space-s: var(--space-2xl);
  --section-space-m: var(--space-3xl);
  --section-space-l: var(--space-4xl);
  --section-pad: clamp(72px, 10vw, 140px);
  --section-pad-compact: clamp(48px, 7vw, 88px);

  /* Layout */
  --content-width: 1240px;
  --content-width-narrow: 800px;
  --content-width-wide: 1440px;
  --wide-width: 1440px;
  --gutter: 24px;
  --gutter-mobile: var(--space-s);

  /* Radius — Live: 5px */
  --radius: 5px;
  --radius-s: 3px;
  --radius-m: 5px;
  --radius-l: 10px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-s: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-m: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-l: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-sm: 0 2px 8px rgba(7, 51, 69, 0.08);
  --shadow-md: 0 8px 28px rgba(7, 51, 69, 0.14);

  /* Buttons */
  --btn-padding: 0.85em 1.35em;
  --btn-radius: 5px;
  --btn-border-width: 0;

  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-base: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
  --transition: 0.3s ease-out;

  /* Z-Index Scale */
  --z-below: -1;
  --z-base: 0;
  --z-above: 10;
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;
}

/* --------------------------------------------------------------------------
   2. Global Resets & Base
   -------------------------------------------------------------------------- */

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

.brxe-section,
.brxe-container,
.brxe-block,
.brxe-div {
  display: block;
  flex-direction: row;
}

body {
  font-family: var(--font-body);
  font-weight: var(--body-weight);
  font-size: var(--text-m);
  line-height: var(--body-line-height);
  color: var(--base);
  background-color: var(--paper, #fbf6ec);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  margin: 0;
}

/* H1, H2: Blau */
h1 {
  font-size: var(--heading-m);
  color: var(--primary);
  letter-spacing: 2.1px;
}

h2 {
  font-size: var(--heading-m);
  color: var(--primary);
}

/* H3: Display-Groesse, dunkles Teal */
h3 {
  font-size: var(--heading-xxl);
  color: var(--secondary);
}

/* H4: Gruen */
h4 {
  font-size: var(--heading-m);
  color: var(--green);
}

h5 {
  font-size: var(--heading-s);
  color: var(--primary);
}

h6 {
  font-size: var(--heading-xs);
  color: var(--primary);
}

p {
  font-size: var(--text-m);
  line-height: var(--body-line-height);
  color: var(--base);
  margin: 0 0 var(--space-s);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Responsive Typography */
@media (max-width: 991px) {
  :root {
    --heading-xxl: 4.5rem;
    --heading-xl: 3rem;
    --heading-l: 2rem;
    --heading-m: 1.5rem;
  }
}

@media (max-width: 767px) {
  :root {
    --heading-xxl: 3rem;
    --heading-xl: 2.2rem;
    --heading-l: 1.8rem;
    --heading-m: 1.25rem;
    --heading-s: 1.125rem;
    --text-m: 1.4rem;
  }
}

/* --------------------------------------------------------------------------
   4. Buttons — Live: Blau, 5px radius, keine Uppercase
   -------------------------------------------------------------------------- */

.btn--primary {
  display: inline-block;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: var(--text-m);
  font-weight: 400;
  color: var(--white);
  background-color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-m);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn--primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}

.btn--outline {
  display: inline-block;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: var(--text-m);
  font-weight: 400;
  color: var(--primary);
  background-color: transparent;
  border: 2px solid var(--primary);
  border-radius: var(--radius-m);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn--outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}

.btn--green {
  display: inline-block;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: var(--text-m);
  font-weight: 400;
  color: var(--white);
  background-color: var(--green);
  border: none;
  border-radius: var(--radius-m);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn--green:hover {
  background-color: var(--green-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}

.btn--white {
  display: inline-block;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: var(--text-m);
  font-weight: 400;
  color: var(--primary);
  background-color: var(--white);
  border: none;
  border-radius: var(--radius-m);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn--white:hover {
  background-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}

/* Small Button Variant */
.btn--s {
  padding: 10px 16px;
  font-size: 1rem;
}

/* Large Button Variant */
.btn--l {
  padding: 18px 28px;
  font-size: var(--text-l);
}

/* --------------------------------------------------------------------------
   5. Section Utilities
   -------------------------------------------------------------------------- */

.section--light {
  background-color: var(--white);
  color: var(--base);
}

.section--neutral {
  background-color: var(--base-ultra-light);
  color: var(--base);
}

.section--dark {
  background-color: var(--secondary);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
  color: var(--white);
}

.section--dark p {
  color: var(--base-light);
}

.section--dark a {
  color: var(--primary);
}

.section--primary {
  background-color: var(--primary);
  color: var(--white);
}

.section--primary h1,
.section--primary h2,
.section--primary h3,
.section--primary h4 {
  color: var(--white);
}

.section--primary p {
  color: rgba(255, 255, 255, 0.9);
}

/* --------------------------------------------------------------------------
   6. Layout Utilities
   -------------------------------------------------------------------------- */

.content-width {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.content-width--narrow {
  max-width: var(--content-width-narrow);
}

.content-width--wide {
  max-width: var(--content-width-wide);
}

/* --------------------------------------------------------------------------
   7. Card Styles
   -------------------------------------------------------------------------- */

.card {
  background-color: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-l);
  transform: translateY(-4px);
}

.card--flat {
  box-shadow: none;
  border: 1px solid var(--base-light);
}

.card--flat:hover {
  box-shadow: var(--shadow-m);
  border-color: transparent;
}

/* --------------------------------------------------------------------------
   8. Table Styles (Preistabellen)
   -------------------------------------------------------------------------- */

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-m);
}

.price-table th {
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 1em 1.25em;
  text-align: left;
}

.price-table td {
  padding: 0.85em 1.25em;
  border-bottom: 1px solid var(--base-light);
  color: var(--base);
}

.price-table tr:nth-child(even) td {
  background-color: var(--base-ultra-light);
}

.price-table tr:hover td {
  background-color: rgba(0, 157, 223, 0.05);
}

.price-table .price-table__highlight {
  background-color: rgba(0, 157, 223, 0.08);
  font-weight: 600;
}

.price-table .price-table__price {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   9. Tooltip Styles (Preistabellen — Pink!)
   -------------------------------------------------------------------------- */

[data-tooltip] {
  position: relative;
  cursor: help;
  border-bottom: 1px dashed var(--tooltip);
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5em 0.75em;
  background-color: var(--tooltip);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  border-radius: var(--radius-s);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  z-index: var(--z-above);
}

[data-tooltip]:hover::after {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   10. Responsive Helpers
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  :root {
    --gutter: var(--gutter-mobile);
    --section-space-s: var(--space-xl);
    --section-space-m: var(--space-2xl);
    --section-space-l: var(--space-3xl);
  }

  .btn--primary,
  .btn--outline,
  .btn--green,
  .btn--white {
    width: 100%;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   11. Site Header + Fullscreen Burger Menu
   -------------------------------------------------------------------------- */

.cs-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-modal);
  pointer-events: none;
}

.cs-site-header__bar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--content-width-wide));
  min-height: 92px;
  margin: 18px auto 0;
  padding: 16px 22px 16px 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius-m) + 10px);
  box-shadow: 0 18px 55px rgba(7, 51, 69, 0.12);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.cs-site-header.is-scrolled .cs-site-header__bar {
  min-height: 76px;
  margin-top: 10px;
  box-shadow: 0 12px 38px rgba(7, 51, 69, 0.14);
}

.cs-site-header__logo-link,
.cs-site-header__logo-link:hover {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
}

.cs-site-header__logo {
  display: block;
  width: clamp(96px, 10vw, 148px);
  height: auto;
}

.cs-site-header__burger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 0 0 18px;
  color: var(--primary);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.cs-site-header__burger-label {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cs-site-header__burger-icon {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 48px;
  height: 48px;
  gap: 6px;
  border-radius: 999px;
  background: rgba(0, 157, 223, 0.09);
}

.cs-site-header__burger-line {
  display: block;
  width: 25px;
  height: 2px;
  margin-right: 11px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
}

.cs-site-header__burger-line:nth-child(2) { width: 31px; }
.cs-site-header__burger-line:nth-child(3) { width: 18px; }
.cs-site-header__burger:hover .cs-site-header__burger-line:nth-child(3) { width: 31px; }

.cs-site-header.is-menu-open .cs-site-header__bar {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.cs-site-header.is-menu-open .cs-site-header__logo {
  filter: brightness(0) invert(1);
}

.cs-site-header.is-menu-open .cs-site-header__burger {
  color: var(--white);
}

.cs-site-header.is-menu-open .cs-site-header__burger-label {
  font-size: 0;
}

.cs-site-header.is-menu-open .cs-site-header__burger-label::after {
  content: 'Schließen';
  font-size: 0.72rem;
}

.cs-site-header.is-menu-open .cs-site-header__burger-line:nth-child(1) {
  width: 28px;
  transform: translateY(8px) rotate(45deg);
}

.cs-site-header.is-menu-open .cs-site-header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.cs-site-header.is-menu-open .cs-site-header__burger-line:nth-child(3) {
  width: 28px;
  transform: translateY(-8px) rotate(-45deg);
}

.cs-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 3;
  overflow: hidden auto;
  color: var(--white);
  background: radial-gradient(circle at 85% 12%, rgba(0, 157, 223, 0.34), transparent 34%),
              linear-gradient(135deg, #041d28 0%, var(--secondary) 48%, #021018 100%);
  opacity: 0;
  visibility: hidden;
  clip-path: circle(0% at calc(100% - 70px) 62px);
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease, clip-path 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-site-header.is-menu-open .cs-menu-overlay {
  opacity: 1;
  visibility: visible;
  clip-path: circle(145% at calc(100% - 70px) 62px);
  pointer-events: auto;
}

.cs-menu-overlay__bg {
  position: fixed;
  inset: auto -10vw -22vw -10vw;
  height: 48vw;
  min-height: 360px;
  opacity: 0.16;
  background: repeating-linear-gradient(165deg, transparent 0 42px, rgba(255, 255, 255, 0.42) 43px 45px, transparent 46px 82px);
  transform: rotate(-4deg);
  pointer-events: none;
}

.cs-menu-overlay__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--content-width-wide));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(128px, 15vh, 178px) 0 clamp(32px, 6vw, 80px);
}

.cs-menu-overlay__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cs-menu-overlay__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
}

.cs-menu-overlay__nav-wrap {
  display: grid;
  gap: clamp(2px, 0.75vw, 10px);
}

.cs-menu-nav__link,
.cs-menu-nav__link:hover {
  color: var(--white);
  text-decoration: none;
}

.cs-menu-nav__link {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0.02em 0;
  opacity: 0;
  transform: translateY(24px);
  transition: color var(--transition-base), opacity 0.42s ease, transform 0.42s ease;
}

.cs-site-header.is-menu-open .cs-menu-nav__link {
  opacity: 1;
  transform: translateY(0);
}

.cs-site-header.is-menu-open .cs-menu-nav__link:nth-child(1) { transition-delay: 0.08s; }
.cs-site-header.is-menu-open .cs-menu-nav__link:nth-child(2) { transition-delay: 0.12s; }
.cs-site-header.is-menu-open .cs-menu-nav__link:nth-child(3) { transition-delay: 0.16s; }
.cs-site-header.is-menu-open .cs-menu-nav__link:nth-child(4) { transition-delay: 0.20s; }
.cs-site-header.is-menu-open .cs-menu-nav__link:nth-child(5) { transition-delay: 0.24s; }
.cs-site-header.is-menu-open .cs-menu-nav__link:nth-child(6) { transition-delay: 0.28s; }
.cs-site-header.is-menu-open .cs-menu-nav__link:nth-child(7) { transition-delay: 0.32s; }
.cs-site-header.is-menu-open .cs-menu-nav__link:nth-child(8) { transition-delay: 0.36s; }

.cs-menu-nav__link-inner {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 2vw, 26px);
}

.cs-menu-nav__number {
  width: 2.5em;
  color: var(--primary);
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.cs-menu-nav__title {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8.5vw, 9.5rem);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.015em;
}

.cs-menu-nav__link::after {
  content: '';
  position: absolute;
  left: clamp(58px, 6vw, 94px);
  right: 0;
  bottom: 0.08em;
  height: 0.08em;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.cs-menu-nav__link:hover,
.cs-menu-nav__link.is-active {
  color: var(--yellow);
}

.cs-menu-nav__link:hover::after,
.cs-menu-nav__link.is-active::after {
  transform: scaleX(1);
}

.cs-menu-preview {
  position: sticky;
  bottom: 32px;
  align-self: end;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.48s ease;
  transition-delay: 0.18s;
}

.cs-site-header.is-menu-open .cs-menu-preview {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cs-menu-preview__media {
  min-height: clamp(220px, 30vw, 440px);
  background-image: linear-gradient(180deg, rgba(7, 51, 69, 0.05), rgba(7, 51, 69, 0.35)), url('/wp-content/uploads/2026/04/jumpingwakeboarder.webp');
  background-position: center;
  background-size: cover;
  transition: background-image var(--transition-slow), transform var(--transition-slow);
}

.cs-menu-preview:hover .cs-menu-preview__media {
  transform: scale(1.03);
}

.cs-menu-preview__card {
  position: relative;
  z-index: 1;
  margin-top: -86px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(7, 51, 69, 0.78), rgba(7, 51, 69, 0.96));
  backdrop-filter: blur(16px);
}

.cs-menu-preview__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cs-menu-preview__title {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.cs-menu-preview__text {
  max-width: 42ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.65;
}

.cs-menu-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cs-menu-cta {
  width: auto;
  font-size: 0.95rem;
}

.cs-menu-cta--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

body.cs-menu-is-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .cs-site-header__bar,
  .cs-menu-overlay__inner {
    width: min(calc(100% - 28px), var(--content-width-wide));
  }

  .cs-site-header__bar {
    min-height: 76px;
    margin-top: 12px;
    padding: 12px 14px 12px 18px;
  }

  .cs-site-header__burger-label {
    display: none;
  }

  .cs-menu-overlay__inner {
    padding-top: 112px;
  }

  .cs-menu-overlay__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .cs-menu-overlay__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cs-menu-nav__title {
    font-size: clamp(3rem, 15vw, 5.6rem);
    line-height: 0.88;
  }

  .cs-menu-preview {
    position: relative;
    bottom: auto;
  }
}

@media (max-width: 767px) {
  .cs-menu-overlay {
    clip-path: circle(0% at calc(100% - 44px) 48px);
  }

  .cs-site-header.is-menu-open .cs-menu-overlay {
    clip-path: circle(155% at calc(100% - 44px) 48px);
  }

  .cs-menu-overlay__hint,
  .cs-menu-preview__media {
    display: none;
  }

  .cs-menu-nav__link-inner {
    gap: 12px;
  }

  .cs-menu-nav__number {
    width: 2.1em;
  }

  .cs-menu-preview {
    border-radius: 18px;
  }

  .cs-menu-preview__card {
    margin-top: 0;
    padding: 24px;
  }

  .cs-menu-preview__actions {
    flex-direction: column;
  }

  .cs-menu-cta {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Cross-page HTML draft patterns
   Bewusst globale, häufig wiederkehrende Subpage-Patterns. Diese Regeln
   halten lokale HTML-Previews über base.css funktionsfähig und sind beim
   WP-Push über sync_design_css siteweit verfügbar. Varianten bleiben über
   Modifier gekapselt, damit bestehende .cs-hero/.cs-brand-Home-Styles nicht
   überschrieben werden.
   -------------------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Header/wave preview chrome used by subpage drafts. */
.cs-wave-spacer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  pointer-events: none;
}

.cs-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 48px;
  background: var(--white, #fff);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s, padding 0.35s;
  pointer-events: auto;
}

.cs-wave-spacer.is-hidden .cs-header,
.cs-header.is-scrolled {
  padding: 8px 48px;
  box-shadow: 0 4px 22px rgba(7, 51, 69, 0.1);
}

.cs-header__logo {
  height: 56px;
  transition: height 0.35s;
}

.cs-wave-spacer.is-hidden .cs-header__logo,
.cs-header.is-scrolled .cs-header__logo {
  height: 42px;
}

.cs-header__menu {
  position: absolute;
  right: 48px;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transform: translateY(-50%);
}

.cs-wave-spacer.is-hidden .cs-header__menu,
.cs-header.is-scrolled .cs-header__menu {
  transform: translateY(-50%) scale(0.92);
}

.cs-header__menu-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cs-header__menu-bars span {
  display: block;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-header__menu-bars span:nth-child(1),
.cs-header__menu-bars span:nth-child(2) {
  width: 32px;
}

.cs-header__menu-bars span:nth-child(3) {
  width: 22px;
}

.cs-header__menu:hover .cs-header__menu-bars span:nth-child(3) {
  width: 32px;
}

.cs-header__menu-label {
  color: var(--primary);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cs-wave {
  width: 100vw;
  max-width: 100vw;
  height: 44px;
  margin-top: -2px;
  overflow: hidden;
  line-height: 0;
  transition: transform 0.32s ease, opacity 0.2s ease, height 0.32s ease;
  pointer-events: none;
}

.cs-wave-spacer.is-hidden .cs-wave {
  opacity: 0;
  height: 0;
  transform: translateY(-100%);
  transition: transform 0.32s ease, opacity 0.18s ease, height 0.32s ease;
}

.cs-wave svg {
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  height: 100%;
  display: block;
  animation: none;
  transform: none;
}

.cs-header-nav[hidden] {
  display: none !important;
}

.cs-header-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: auto;
}

.cs-header-nav__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 51, 69, 0.52);
  cursor: pointer;
}

.cs-header-nav__panel {
  position: absolute;
  top: 96px;
  right: 48px;
  width: min(420px, calc(100vw - 32px));
  max-height: calc(100vh - 120px);
  overflow: auto;
  padding: 30px;
  background: var(--white, #fff);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(7, 51, 69, 0.22);
}

.cs-wave-spacer.is-hidden .cs-header-nav__panel {
  top: 68px;
}

.cs-header-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cs-header-nav__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
  text-transform: uppercase;
}

.cs-header-nav__close {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--base-ultra-light);
  color: var(--secondary);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.cs-header-nav__grid,
.cs-header-nav__group {
  display: grid;
}

.cs-header-nav__grid {
  gap: 22px;
}

.cs-header-nav__group {
  gap: 8px;
}

.cs-header-nav__heading {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cs-header-nav__group a {
  color: var(--secondary);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
}

.cs-header-nav__group a:hover,
.cs-header-nav__group a:focus-visible {
  color: var(--primary);
}

body.cs-menu-open {
  overflow: hidden;
}

.cs-page-spacer {
  height: 140px;
}

.cs-page-hero--simple {
  padding: 110px 48px 82px;
  background: linear-gradient(135deg, rgba(0, 157, 223, 0.1), rgba(101, 179, 46, 0.08));
}

.cs-page-hero--simple .cs-page-hero__inner,
.cs-page-section__inner {
  max-width: var(--content-width, 1200px);
  margin: 0 auto;
}

.cs-page-hero--simple h1 {
  margin: 10px 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 6.875rem);
  line-height: 0.95;
  color: var(--primary);
}

.cs-page-hero--simple .cs-page-hero__lead {
  max-width: 820px;
  color: var(--secondary);
  font-size: var(--text-l, 1.375rem);
  line-height: 1.55;
}

.cs-page-hero--legal {
  background: var(--base-ultra-light);
  padding: 82px 0 48px;
}

.cs-page-hero--legal .cs-page-hero__inner,
.cs-legal__inner {
  max-width: var(--content-width-narrow, 800px);
  margin: 0 auto;
  padding: 0 var(--gutter, 24px);
}

.cs-page-hero__eyebrow {
  margin-bottom: 12px;
}

.cs-page-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--primary);
  text-transform: uppercase;
}

.cs-legal {
  background: var(--white);
  padding: 64px 0 96px;
}

.cs-legal__article {
  color: var(--base);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
}

.cs-legal__article > *:first-child {
  margin-top: 0;
}

.cs-legal__article p {
  margin: 0 0 1.05rem;
}

.cs-legal__article ul,
.cs-legal__article ol {
  margin: 0 0 1.2rem 1.25rem;
  padding: 0;
}

.cs-legal__article li {
  margin-bottom: 0.6rem;
}

.cs-legal__article a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cs-legal__section {
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid var(--base-light);
}

.cs-legal__section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.cs-legal__heading {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--secondary);
  text-transform: uppercase;
}

.cs-legal__subheading {
  margin: 1.4rem 0 0.8rem;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--green);
  text-transform: uppercase;
}

.cs-legal__lead {
  color: var(--secondary);
  font-size: 1.1rem;
}

.cs-legal__meta {
  color: var(--base-medium);
}

.cs-gallery-impressions {
  position: relative;
  overflow: hidden;
  padding: 72px 48px 0;
  background: var(--white);
}

.cs-gallery-impressions--neutral {
  background: var(--base-ultra-light);
}

.cs-gallery-impressions__intro {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.cs-gallery-impressions__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cs-gallery-impressions__title {
  margin-bottom: 16px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.cs-gallery-impressions__text {
  max-width: 720px;
  margin: 0 auto;
  color: var(--base-medium);
  line-height: 1.65;
}

.cs-gallery-impressions__text a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cs-gallery-impressions__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}

.cs-gallery-impressions__item {
  position: relative;
  display: block;
  overflow: hidden;
}

.cs-gallery-impressions__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-gallery-impressions__item:hover img {
  transform: scale(1.08);
}

.cs-footer {
  background: var(--secondary);
  color: var(--white);
}

.cs-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 64px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 64px 56px;
}

.cs-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-footer__brand img {
  width: 100px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.cs-footer__brand-text {
  max-width: 200px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  line-height: 1.6;
}

.cs-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  justify-content: center;
}

.cs-footer__nav-col h4,
.cs-footer__contact h4 {
  margin-bottom: 14px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.cs-footer__nav-col a,
.cs-footer__contact a,
.cs-footer__contact span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 2.1;
  transition: color 0.2s, transform 0.2s;
}

.cs-footer__nav-col a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.cs-footer__contact {
  text-align: right;
}

.cs-footer__contact a:hover {
  color: var(--white);
}

.cs-footer__contact span {
  color: rgba(255, 255, 255, 0.5);
}

.cs-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cs-footer__social {
  display: flex;
  gap: 8px;
}

.cs-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.3s;
}

.cs-footer__social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.cs-footer__legal {
  display: flex;
  gap: 24px;
  font-size: 0.78rem;
}

.cs-footer__legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.cs-footer__legal a:hover {
  color: var(--white);
}

.cs-footer__copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .cs-gallery-impressions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cs-header,
  .cs-wave-spacer.is-hidden .cs-header,
  .cs-header.is-scrolled {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cs-header__menu {
    right: 24px;
  }

  .cs-page-spacer {
    height: 128px;
  }

  .cs-page-hero--simple,
  .cs-gallery-impressions {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cs-page-hero--simple {
    padding-top: 92px;
    padding-bottom: 64px;
  }

  .cs-page-hero--legal {
    padding-top: 56px;
  }

  .cs-legal {
    padding-bottom: 72px;
  }

  .cs-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 32px;
  }

  .cs-footer__contact {
    text-align: left;
  }

  .cs-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    justify-content: start;
  }

  .cs-footer__bottom {
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .cs-wave-spacer.is-hidden .cs-header__logo,
  .cs-header.is-scrolled .cs-header__logo {
    height: 40px;
  }

  .cs-header-nav__panel {
    top: 88px;
    left: 16px;
    right: 16px;
    width: auto;
    max-height: calc(100vh - 110px);
    padding: 24px;
  }

  .cs-wave-spacer.is-hidden .cs-header-nav__panel {
    top: 64px;
  }
}

/* --------------------------------------------------------------------------
   Home page draft CSS
   Ergänzt die nicht als Global Classes abbildbaren Regeln aus
   project/html/pages/home.html. Auf Seiten mit #cs-hero gescoped, damit das
   bestehende Design-System auf anderen Seiten nicht überschrieben wird.
   -------------------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

html:has(body #cs-hero) {
  font-size: 16px;
}

body:has(#cs-hero) {
  overflow-x: hidden;
}

body:has(#cs-hero) .cs-wave-spacer:not(.is-hidden) .cs-header {
  box-shadow: none;
}

body:has(#cs-hero) .cs-wave-spacer.is-hidden .cs-header {
  padding: 12px 48px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

body:has(#cs-hero) .cs-header.is-scrolled .cs-header__logo {
  height: 50px;
}

body:has(#cs-hero) .cs-header__menu-bars span {
  display: block;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body:has(#cs-hero) .cs-header__menu-bars span:nth-child(1),
body:has(#cs-hero) .cs-header__menu-bars span:nth-child(2) {
  width: 32px;
}

body:has(#cs-hero) .cs-header__menu-bars span:nth-child(3) {
  width: 22px;
}

body:has(#cs-hero) .cs-header__menu:hover .cs-header__menu-bars span:nth-child(3) {
  width: 32px;
}

body:has(#cs-hero) .cs-wave-spacer.is-hidden .cs-wave {
  opacity: 0;
  height: 0;
  transition: opacity 0.4s, height 0.4s;
}

body:has(#cs-hero) .cs-wave svg {
  width: 200%;
  min-width: 3200px;
  height: 100%;
  display: block;
  animation: waveSlide 15s linear infinite;
}

@keyframes waveSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

body:has(#cs-hero) .cs-hero__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 69%;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s;
}

body:has(#cs-hero) .cs-hero__card:hover .cs-hero__card-img img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

body:has(#cs-hero) .cs-hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,51,69,0.1) 0%, rgba(7,51,69,0.5) 100%);
  z-index: 1;
  transition: opacity 0.5s;
}

body:has(#cs-hero) .cs-hero__card:hover::before {
  opacity: 0;
}

body:has(#cs-hero) .cs-hero__card:hover .cs-hero__card-content {
  transform: translateY(0);
  opacity: 1;
}

body:has(#cs-hero) .cs-hero__card-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

body:has(#cs-hero) .cs-hero__card-content p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  max-width: 400px;
}

body:has(#cs-hero) .cs-hero__card-content .btn {
  font-size: 0.85rem;
  padding: 12px 24px;
}

body:has(#cs-hero) .cs-hero__card:hover .cs-hero__card-label {
  opacity: 0;
  transform: translateY(-10px);
}

body:has(#cs-hero) .cs-hero__card-label h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

body:has(#cs-hero) .cs-hero__card-label span {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  opacity: 0.8;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

body:has(#cs-hero) .btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 155, 216, 0.4);
}

body:has(#cs-hero) .btn--green:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(101, 179, 46, 0.4);
}

body:has(#cs-hero) .btn--white:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-2px);
}

body:has(#cs-hero) .btn--outline:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 51, 69, 0.2);
}

body:has(#cs-hero) .cs-brand__content h3 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  mix-blend-mode: difference;
}

body:has(#cs-hero) .cs-info-strip__col:first-child {
  border-right: 1px solid rgba(255,255,255,0.1);
}

body:has(#cs-hero) .cs-info-strip__col h3,
body:has(#cs-hero) .cs-news__header h3,
body:has(#cs-hero) .cs-offers__header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary);
}

body:has(#cs-hero) .cs-info-strip__col h3 {
  margin-bottom: 16px;
}

body:has(#cs-hero) .cs-info-strip__col p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

body:has(#cs-hero) .cs-info-strip__col .btn {
  font-size: 0.85rem;
}

body:has(#cs-hero) .cs-prices__item:hover {
  background: rgba(255,255,255,0.04);
}

body:has(#cs-hero) .cs-news__card-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body:has(#cs-hero) .cs-news__card:hover .cs-news__card-img img {
  transform: scale(1.06);
}

body:has(#cs-hero) .cs-news__card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 14px;
}

body:has(#cs-hero) .cs-news__card-body h3 a {
  color: var(--secondary);
  transition: color 0.3s;
}

body:has(#cs-hero) .cs-news__card-body h3 a:hover {
  color: var(--primary);
}

body:has(#cs-hero) .cs-news__card-body p {
  font-size: 0.95rem;
  color: var(--base);
  line-height: 1.7;
  margin-bottom: 24px;
}

body:has(#cs-hero) .cs-gallery__text a {
  color: var(--primary);
}

body:has(#cs-hero) .cs-gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
  filter: saturate(0.9);
}

body:has(#cs-hero) .cs-gallery__item:hover img {
  transform: scale(1.12);
  filter: saturate(1.2) brightness(1.05);
}

body:has(#cs-hero) .cs-group__overlay h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 24px;
}

body:has(#cs-hero) .cs-group__overlay p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.8);
}

body:has(#cs-hero) .cs-offers__card-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body:has(#cs-hero) .cs-offers__card:hover .cs-offers__card-img img {
  transform: scale(1.08);
}

body:has(#cs-hero) .cs-offers__card-body p {
  flex: 1;
  font-size: 0.88rem;
  color: var(--base);
  line-height: 1.7;
  margin-bottom: 16px;
}

body:has(#cs-hero) .cs-offers__card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 10px;
}

body:has(#cs-hero) .cs-offers__link::after {
  content: '\2192';
}

body:has(#cs-hero) .cs-offers__link:hover {
  color: var(--primary-hover);
  gap: 12px;
}

body:has(#cs-hero) .cs-offers__cta .btn {
  padding: 18px 48px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

body:has(#cs-hero) .cs-footer__brand img {
  width: 100px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

body:has(#cs-hero) .cs-footer__nav-col h4,
body:has(#cs-hero) .cs-footer__contact h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--primary);
}

body:has(#cs-hero) .cs-footer__nav-col h4 {
  letter-spacing: 0.02em;
}

body:has(#cs-hero) .cs-footer__nav-col a,
body:has(#cs-hero) .cs-footer__contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  display: block;
  line-height: 2.1;
  transition: color 0.2s, transform 0.2s;
}

body:has(#cs-hero) .cs-footer__nav-col a:hover {
  color: var(--white);
  transform: translateX(3px);
}

body:has(#cs-hero) .cs-footer__contact a:hover {
  color: var(--white);
}

body:has(#cs-hero) .cs-footer__contact span {
  font-size: 0.85rem;
  display: block;
  line-height: 2.1;
  color: rgba(255,255,255,0.5);
}

body:has(#cs-hero) .cs-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}

body:has(#cs-hero) .cs-footer__social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

body:has(#cs-hero) .cs-footer__legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

body:has(#cs-hero) .cs-footer__legal a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  body:has(#cs-hero) .cs-hero {
    grid-template-columns: 1fr;
    height: auto;
    gap: 4px;
  }

  body:has(#cs-hero) .cs-hero__card {
    height: calc(100vh - 140px);
  }

  body:has(#cs-hero) .cs-hero__card-content {
    opacity: 1;
    transform: translateY(0);
  }

  body:has(#cs-hero) .cs-hero__card-label,
  body:has(#cs-hero) .cs-scroll-hint {
    display: none;
  }

  body:has(#cs-hero) .cs-info-strip__inner,
  body:has(#cs-hero) .cs-group,
  body:has(#cs-hero) .cs-news__card {
    grid-template-columns: 1fr;
  }

  body:has(#cs-hero) .cs-info-strip__col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  body:has(#cs-hero) .cs-info-strip__col {
    padding: 56px 32px;
  }

  body:has(#cs-hero) .cs-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  body:has(#cs-hero) .cs-group__bg-wrap {
    min-height: 300px;
  }

  body:has(#cs-hero) .cs-group__overlay {
    padding: 48px 32px;
  }

  body:has(#cs-hero) .cs-offers__grid {
    grid-template-columns: 1fr;
  }

  body:has(#cs-hero) .cs-offers,
  body:has(#cs-hero) .cs-news {
    padding: 72px 24px;
  }

  body:has(#cs-hero) .cs-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 32px;
  }

  body:has(#cs-hero) .cs-footer__contact {
    text-align: left;
  }

  body:has(#cs-hero) .cs-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    justify-content: start;
  }

  body:has(#cs-hero) .cs-footer__bottom {
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px;
    text-align: center;
  }

  body:has(#cs-hero) .cs-brand__content h3 {
    font-size: 3rem;
  }
}

/* BEGIN TOBRICKS LEGACY SUBPAGE SUPPORT (trimmed) */
/* Kept only classes still referenced by canonical project/html/pages + project/pages. */
@media (max-width: 768px) {
  .cs-legal { padding-bottom: 72px; }
}

.cs-contact-card, .cs-route-card { background: var(--white); border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); padding: 32px; }

.cs-contact-card h2, .cs-route-card h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--primary); margin-bottom: 20px; }

.cs-route-stack { display: grid; gap: 28px; }

.cs-route-card h3 { font-family: var(--font-heading); color: var(--secondary); font-size: 1.65rem; margin-bottom: 12px; }

.cs-route-card p { color: var(--base-medium); line-height: 1.7; margin-bottom: 18px; }

@media (max-width: 900px) {
  .cs-gallery-impressions__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .cs-page-hero, .cs-page-section, .cs-gallery-impressions { padding-left: 24px; padding-right: 24px; }

  .cs-contact-card, .cs-route-card, .cs-route-map { padding: 24px; }
}

.cs-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }

.cs-split__media { border-radius: 10px; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,0.12); }

.cs-split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.cs-info-card { display: flex; flex-direction: column; min-height: 100%; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.cs-info-card:hover .cs-info-card__img img { transform: scale(1.06); }

@media (max-width: 900px) {
  .cs-split, .cs-news__card, .cs-idea-cta { grid-template-columns: 1fr; }

  .cs-gallery-impressions { padding-left: 24px; padding-right: 24px; }

  .cs-gallery-impressions__grid { grid-template-columns: repeat(3, 1fr); }
}

.cs-faq-list { display: grid; gap: 14px; }

@media (max-width: 900px) {
  .cs-split { grid-template-columns: 1fr; }

  .cs-gallery-impressions { padding-left: 24px; padding-right: 24px; }

  .cs-gallery-impressions__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .cs-page-section, .cs-gallery-impressions { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 680px) {
  .cs-page-hero__content, .cs-content-section, .cs-event-cta__content, .cs-gallery-impressions { padding-left: 24px; padding-right: 24px; }

  .cs-gallery-impressions__grid { grid-template-columns: repeat(3,1fr); }
}

.cs-hours-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.cs-price-stack { display: grid; gap: 32px; }

.cs-price-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.cs-price-card__note { font-size: 0.9rem; color: rgba(255,255,255,0.72); max-width: 560px; }

.cs-price-card__body { padding: 24px 32px 30px; display: grid; gap: 12px; }

.cs-price-card__body p { color: var(--base-medium); line-height: 1.7; }

.cs-fineprint { display: grid; gap: 12px; margin-top: 36px; padding: 24px 28px; border-left: 4px solid var(--primary); background: rgba(0,157,223,0.08); color: var(--secondary); }

@media (max-width: 768px) {
  .cs-price-card__body { padding: 22px 24px 26px; }
}

@media (max-width: 900px) {
  .cs-split, .cs-info-strip__inner, .cs-news__card, .cs-menu-note { grid-template-columns: 1fr; }

  .cs-gallery-impressions { padding-left: 24px; padding-right: 24px; }

  .cs-gallery-impressions__grid { grid-template-columns: repeat(3, 1fr); }
}

.cs-section__header h2, .cs-step-card h3, .cs-price-card h3, .cs-cta-band__content h2 { font-family: var(--font-heading); font-weight: 400; text-transform: uppercase; }

.cs-step-card p, .cs-step-card li, .cs-price-card p { font-size: .98rem; line-height: 1.75; color: var(--base); }

.cs-price-card { background: var(--white); border-radius: 8px; padding: 36px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }

.cs-price-card h3 { font-size: 1.9rem; color: var(--secondary); margin-bottom: 18px; }

.cs-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }

.cs-info-card, .cs-service-card, .cs-price-card { background: var(--white); border-radius: 8px; padding: 34px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }

.cs-info-card h3, .cs-service-card h3, .cs-price-card h3 { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 400; color: var(--secondary); margin-bottom: 14px; text-transform: uppercase; }

.cs-info-card p, .cs-service-card p, .cs-price-card p { font-size: .98rem; line-height: 1.75; color: var(--base); }

.cs-info-card .btn { margin-top: 22px; }

.cs-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 56px; align-items: center; }

.cs-split__media { border-radius: 8px; overflow: hidden; min-height: 440px; box-shadow: 0 16px 48px rgba(0,0,0,.12); }

.cs-split__media img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; display: block; }

@media (max-width: 980px) {
  .cs-page-hero, .cs-split, .cs-cta-band, .cs-beach-teaser { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .cs-info-grid, .cs-card-grid, .cs-two-card, .cs-equipment-grid { grid-template-columns: 1fr; }

  .cs-gallery-impressions { padding-left: 24px; padding-right: 24px; }

  .cs-gallery-impressions__grid { grid-template-columns: repeat(3, 1fr); }
}
/* END TOBRICKS LEGACY SUBPAGE SUPPORT */

/* --------------------------------------------------------------------------
   Cablesport reference-style header/menu
   -------------------------------------------------------------------------- */

.cs-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-modal);
  width: 100%;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(7, 51, 69, 0.10);
  pointer-events: auto;
}

.cs-site-header__bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-height: 112px;
  margin: 0;
  padding: 18px clamp(18px, 4vw, 54px) 16px;
  background: var(--white);
}

.cs-site-header__burger {
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  min-height: 38px;
  padding: 10px 0;
  color: var(--secondary);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}

.cs-site-header__burger-icon,
.cs-site-header__burger-icon p {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 18px;
  margin: 0;
  background: transparent;
}

.cs-site-header__burger-icon br {
  display: none;
}

.cs-site-header__burger-line {
  display: block;
  width: 25px;
  height: 2px;
  margin: 0;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
}

.cs-site-header__burger-line:nth-of-type(3) {
  width: 16px;
}

.cs-site-header.is-menu-open .cs-site-header__burger-line:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}

.cs-site-header.is-menu-open .cs-site-header__burger-line:nth-of-type(2) {
  opacity: 0;
}

.cs-site-header.is-menu-open .cs-site-header__burger-line:nth-of-type(3) {
  width: 25px;
  transform: translateY(-7px) rotate(-45deg);
}

.cs-site-header__burger-label {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cs-site-header__logo-link {
  justify-self: center;
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  text-decoration: none;
}

.cs-site-header__logo {
  display: block;
  width: clamp(138px, 14vw, 206px);
  height: auto;
}

.cs-site-header__actions {
  justify-self: start;
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.cs-site-header__booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: var(--white);
  background: #e6007e;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.cs-menu-panel {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  min-height: 100vh;
  padding-top: 128px;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.cs-site-header.is-menu-open .cs-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cs-menu-panel__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1180px);
  min-height: calc(100vh - 128px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 70px) clamp(24px, 7vw, 96px);
}

.cs-menu-panel__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.2vh, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.cs-menu-panel__nav li {
  margin: 0;
  padding: 0;
}

.cs-menu-panel__nav a {
  color: var(--secondary);
  font-size: clamp(1.35rem, 3.2vw, 3.1rem);
  font-weight: 700;
  line-height: 0.95;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.cs-menu-panel__nav a:hover {
  color: var(--primary);
}

.cs-menu-panel__nav .is-highlight a,
.cs-menu-panel__nav a.is-highlight {
  color: #e6007e;
}

body.cs-menu-is-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .cs-site-header__bar {
    min-height: 84px;
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .cs-site-header__booking {
    display: none;
  }

  .cs-site-header__logo {
    width: clamp(112px, 32vw, 148px);
  }

  .cs-site-header__burger-label {
    font-size: 0.76rem;
  }

  .cs-menu-panel {
    padding-top: 98px;
  }

  .cs-menu-panel__inner {
    min-height: calc(100vh - 98px);
  }

  .cs-menu-panel__nav a {
    font-size: clamp(1.25rem, 7vw, 2.35rem);
  }
}

:root {
  --cs-header-offset: 112px;
  --cs-home-section-min-height: calc(100svh - var(--cs-header-offset));
}

body:has(#cs-hero) .cs-hero,
body:has(#cs-hero) .cs-brand,
body:has(#cs-hero) .cs-info-strip {
  min-height: var(--cs-home-section-min-height);
}

body:has(#cs-hero) .cs-hero {
  height: var(--cs-home-section-min-height);
}

body:has(#cs-hero) .cs-brand {
  height: auto;
}

body:has(#cs-hero) .cs-info-strip {
  display: flex;
  align-items: stretch;
}

body:has(#cs-hero) .cs-info-strip__inner {
  width: 100%;
  min-height: inherit;
  align-items: stretch;
}

@media (max-width: 860px) {
  :root {
    --cs-header-offset: 84px;
  }

  body:has(#cs-hero) .cs-hero {
    height: auto;
  }

  body:has(#cs-hero) .cs-brand,
  body:has(#cs-hero) .cs-info-strip {
    min-height: var(--cs-home-section-min-height);
  }
}

/* --------------------------------------------------------------------------
   cap Design Pivot Foundation (2026-05)
   Mirrors project/theme/variables.yml while preserving legacy CSS above.
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Sugra';
  src: url('assets/fonts/Sugra.woff2') format('woff2'),
       url('assets/fonts/Sugra.woff') format('woff'),
       url('assets/fonts/Sugra.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}

:root {
  --teal: #3FA39E;
  --cable-teal: #3FA39E;
  --orange: #F26A1F;
  --sunset-orange: #F26A1F;
  --yellow: #FFD60A;
  --solar-yellow: #FFD60A;
  --cream: #F3E7CF;
  --beach-cream: #F3E7CF;
  --paper: #FBF6EC;
  --ink: #141414;
  --ink-black: #141414;
  --petrol: #256B68;
  --deep-petrol: #256B68;
  --orange-deep: #D9491E;

  /* Compatibility aliases for existing classes. */
  --primary: var(--teal);
  --primary-dark: var(--petrol);
  --primary-hover: var(--petrol);
  --secondary: var(--ink);
  --accent: var(--yellow);
  --accent-hover: var(--orange);
  --green: var(--teal);
  --green-hover: var(--petrol);
  --yellow-hover: var(--orange);
  --tooltip: var(--orange-deep);
  --base: var(--ink);
  --base-dark: var(--ink);
  --base-medium: var(--petrol);
  --base-light: var(--cream);
  --base-ultra-light: var(--paper);

  --font-display: 'Sugra', 'Playfair Display', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Space Grotesk', Inter, Arial, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --heading-weight: 900;
  --heading-line-height: 1.04;
  --body-line-height: 1.5;
  --body-weight: 400;

  --hero: clamp(72px, 14vw, 220px);
  --h1: clamp(56px, 9vw, 144px);
  --h2: clamp(42px, 6vw, 96px);
  --h3: clamp(30px, 4vw, 56px);
  --body: 20px;
  --small: 15px;
  --label: 12px;

  --section-pad: clamp(72px, 10vw, 150px);
  --section-pad-compact: clamp(48px, 7vw, 96px);
  --gutter: clamp(18px, 3vw, 32px);
  --radius: 24px;
  --radius-s: 14px;
  --radius-m: 24px;
  --radius-l: 36px;
  --radius-xl: 48px;
  --radius-full: 999px;
  --btn-radius: 999px;
  --btn-padding: 0.95em 1.25em;
  --btn-border-width: 1px;
  --shadow-sm: 0 2px 10px rgba(20, 20, 20, 0.10);
  --shadow-md: 0 12px 34px rgba(20, 20, 20, 0.16);
  --shadow-s: var(--shadow-sm);
  --shadow-m: var(--shadow-md);
  --shadow-l: 0 18px 54px rgba(20, 20, 20, 0.20);
  --transition: 0.25s ease-out;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  color: var(--ink);
  letter-spacing: -0.04em;
}

.cs-home {
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

.cs-home a {
  color: inherit;
}

.cs-btn,
a.cs-btn,
button.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 44px;
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  border: var(--btn-border-width) solid var(--ink);
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.cs-btn:hover,
a.cs-btn:hover,
button.cs-btn:hover {
  transform: translateY(-2px);
  background: var(--orange);
  color: var(--ink);
  border-color: var(--orange);
}

.cs-btn--yellow,
a.cs-btn--yellow,
button.cs-btn--yellow {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.cs-btn--outline,
a.cs-btn--outline,
button.cs-btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: currentColor;
}

.cs-btn--on-dark,
a.cs-btn--on-dark,
button.cs-btn--on-dark {
  color: var(--cream);
  border-color: rgba(243, 231, 207, 0.65);
}

.cs-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: var(--label);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cs-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  width: fit-content;
  border-radius: var(--radius-full);
  padding: 0.45rem 0.8rem;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cs-pill::before {
  content: "●";
  font-size: 0.75em;
}

.cs-photo {
  overflow: hidden;
  background: var(--cream);
}

.cs-photo img,
.cs-card__media img,
.cs-hero__media img,
.cs-specials__media img,
.cs-detail__media img,
.cs-beach__media img,
.cs-parat__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.72) sepia(0.16) contrast(1.04) brightness(1);
}

.cs-home-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 246, 236, 0.88);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
  backdrop-filter: blur(18px);
}

.cs-home-nav__brand,
.cs-home-nav__links,
.cs-home-nav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.cs-home-nav__brand {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.cs-home-nav__logo,
.cs-footer__logo {
  width: 58px;
  height: auto;
}

.cs-home-nav__links {
  flex: 1 1 auto;
  width: auto;
}

.cs-home-nav__actions {
  flex: 0 0 auto;
}

.cs-home-nav__links a {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.cs-home-hero,
.cs-hero {
  position: relative;
  min-height: clamp(680px, 100vh, 920px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: clamp(28px, 6vw, 96px);
  padding: clamp(92px, 12vw, 160px) clamp(18px, 6vw, 86px) clamp(56px, 8vw, 120px);
  overflow: hidden;
  background: radial-gradient(circle at 20% 80%, rgba(20,20,20,0.78), rgba(20,20,20,0.32) 42%, rgba(20,20,20,0.08) 70%), var(--ink);
  color: var(--cream);
}

.cs-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.82;
}

.cs-hero__content,
.cs-hero__side {
  position: relative;
  z-index: 1;
}

.cs-hero__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(24px, 5vw, 72px);
}

.cs-hero__eyebrow {
  margin-bottom: 18px;
  color: var(--cream);
}

.cs-hero__title,
.cs-display-title {
  font-family: var(--font-display);
  font-size: var(--hero);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.06em;
  color: var(--cream);
  text-transform: lowercase;
}

.cs-hero__title-accent {
  color: var(--yellow);
}

.cs-hero__actions,
.cs-section-actions,
.cs-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cs-ticker {
  overflow: hidden;
  background: var(--orange);
  color: var(--yellow);
  padding: 18px 0;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cs-ticker__track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: cs-ticker-scroll 34s linear infinite;
}

@keyframes cs-ticker-scroll {
  to { transform: translateX(-50%); }
}

.cs-section {
  padding: var(--section-pad) clamp(18px, 6vw, 86px);
}

.cs-section--ink {
  background: var(--ink);
  color: var(--cream);
}

.cs-section--orange {
  background: var(--orange);
  color: var(--ink);
}

.cs-section--teal {
  background: var(--teal);
  color: var(--ink);
}

.cs-section__inner {
  width: min(100%, var(--content-width-wide));
  margin-inline: auto;
}

.cs-manifest__title,
.cs-beach__title,
.cs-groups__title,
.cs-pricing__title,
.cs-parat__title {
  font-family: var(--font-display);
  font-size: clamp(70px, 13vw, 190px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.cs-cutout-text {
  color: transparent;
  background-position: center;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs-grid-2,
.cs-detail__grid,
.cs-parat__grid,
.cs-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
}

.cs-grid-3,
.cs-specials__grid,
.cs-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.cs-card,
.cs-hours__panel,
.cs-groups__panel,
.cs-specials__card,
.cs-detail__card,
.cs-pricing__card,
.cs-parat__card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(20, 20, 20, 0.12);
}

.cs-hours__row {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.12);
}

.cs-hours__day,
.cs-price__label,
.cs-parat__number,
.cs-specials__number,
.cs-detail__meta {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cs-groups__features,
.cs-footer__links {
  display: grid;
  gap: 12px;
}

.cs-pricing__price {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.9;
  color: var(--orange);
}

.cs-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(64px, 8vw, 120px) clamp(18px, 6vw, 86px) 28px;
}

.cs-footer a {
  color: inherit;
  text-decoration: none;
}

.cs-footer__tagline {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 150px);
  line-height: 0.8;
  color: var(--orange);
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .cs-home-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .cs-home-nav__links {
    flex-wrap: wrap;
  }

  .cs-home-hero,
  .cs-hero,
  .cs-grid-2,
  .cs-detail__grid,
  .cs-parat__grid,
  .cs-footer__grid,
  .cs-grid-3,
  .cs-specials__grid,
  .cs-pricing__grid {
    grid-template-columns: 1fr;
  }

  .cs-hero__side {
    align-self: start;
  }
}

@media (max-width: 640px) {
  .cs-home-nav__links {
    display: none;
  }

  .cs-hero__title,
  .cs-display-title,
  .cs-manifest__title,
  .cs-beach__title,
  .cs-groups__title,
  .cs-pricing__title,
  .cs-parat__title {
    word-break: break-word;
  }

  .cs-hours__row {
    grid-template-columns: 1fr;
  }
}

/* <pivot-home-generated> */

/* ===== Cablesport pivot home generated from pivot/Archiv 3/Cablesport Home Standalone.html ===== */
/* =========================================================
   cap — cablesport · pinneberg
   Adapted from wave-sunset-embrace style
   ========================================================= */

@font-face{
  font-family:'Sugra';
  src:url("assets/fonts/pivot-home/da923bb9-b441-4587-8f0c-be20494670c3.woff2") format('woff2'),
      url("assets/fonts/pivot-home/9944adc1-addf-47e8-b648-f6d3dfe26c34.woff")  format('woff'),
      url("assets/fonts/pivot-home/4d9905c2-ff95-4e89-9d48-a573d9753e05.ttf")   format('truetype');
  font-weight:400;font-style:normal;font-display:swap;
  text-rendering:optimizeLegibility;
}

:root{
  --teal:#3FA39E;
  --teal-deep:#256B68;
  --orange:#F26A1F;
  --orange-deep:#D9491E;
  --yellow:#FFD60A;
  --cream:#F3E7CF;
  --sand:#E8D9B8;
  --ink:#141414;
  --ink-soft:#1c1c1c;
  --paper:#FBF6EC;

  --radius:14px;
  --radius-pill:99px;

  --font-display:'Sugra',system-ui,sans-serif;
  --font-head:'Playfair Display','Times New Roman',serif;
  --font-body:'Space Grotesk',-apple-system,sans-serif;
  --font-mono:'Space Mono',ui-monospace,monospace;
  --font-hand:'Architects Daughter',cursive;
  --font-hand-bold:'Caveat Brush','Architects Daughter',cursive;
}

.cs-pivot-home *{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
.cs-pivot-home{
  font-family:var(--font-body);
  background:var(--paper);
  color:var(--ink);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* Bricks does not preserve the draft <main class="cs-pivot-home"> wrapper.
   Re-apply the pivot base typography to top-level Bricks sections. */
:where(.cs-pivot-hero,.cs-pivot-yellow-strip,.cs-pivot-manifest,.cs-pivot-hours-section,.cs-pivot-gh-section,.cs-pivot-crew,.cs-pivot-more,.cs-pivot-pricing,.cs-pivot-strand,.cs-pivot-parat,.cs-pivot-foot){
  font-family:'Space Grotesk', Inter, Arial, sans-serif;
  color:var(--ink);
  font-size:20px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
:where([class^="cs-pivot-"],[class*=" cs-pivot-"]){box-sizing:border-box}

.cs-pivot-home a{color:inherit;text-decoration:none}
.cs-pivot-home img{display:block;max-width:100%}
button{font-family:inherit;cursor:pointer;border:0;background:none;color:inherit}

.cs-pivot-wrap{max-width:1480px;margin:0 auto;padding:0 56px}
@media(max-width:1024px){.cs-pivot-wrap{padding:0 32px}}
@media(max-width:640px){.cs-pivot-wrap{padding:0 20px}}

/* ── film grain ── */
body[data-grain="on"]::before{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:9999;
  opacity:.04;mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.cs-pivot-w3.cs-pivot-org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ============ atoms ============ */
.cs-pivot-mono{
  font-family:var(--font-mono);
  letter-spacing:.18em;text-transform:uppercase;
  font-weight:700;font-size:12px;
}

.cs-pivot-label{
  display:inline-flex;align-items:center;gap:14px;
  font-family:var(--font-mono);
  font-size:12px;letter-spacing:.22em;
  text-transform:uppercase;font-weight:700;color:var(--ink);
  margin-bottom:24px;
}
.cs-pivot-label::before{
  content:"";width:28px;height:1.5px;background:var(--orange);
}
.cs-pivot-label.cs-pivot-on-dark{color:var(--cream)}
.cs-pivot-label.cs-pivot-on-dark::before{background:var(--yellow)}
.cs-pivot-label.cs-pivot-on-orange{color:var(--ink)}
.cs-pivot-label.cs-pivot-on-orange::before{background:var(--ink)}

.cs-pivot-pill{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--font-mono);font-weight:700;
  font-size:12px;letter-spacing:.18em;text-transform:uppercase;
  padding:9px 16px;border-radius:var(--radius-pill);
  background:var(--yellow);color:var(--ink);
  white-space:nowrap;
}
.cs-pivot-pill::before{
  content:"●";font-size:10px;line-height:1;
}
.cs-pivot-pill.cs-pivot-star::before{content:"★"}
.cs-pivot-pill.cs-pivot-plain::before{content:none}

.cs-pivot-btn{
  display:inline-flex;align-items:center;gap:10px;flex-wrap:nowrap;white-space:nowrap;
  font-family:var(--font-mono);font-weight:700;
  font-size:14px;letter-spacing:.18em;text-transform:uppercase;line-height:1;
  padding:14px 22px;border-radius:var(--radius-pill);
  background:var(--ink);color:var(--yellow);
  transition:transform .2s ease, background .2s ease;
  border:0;
}
.cs-pivot-btn:hover{transform:translateY(-2px);background:var(--ink-soft)}
.cs-home a.cs-pivot-btn,
.cs-pivot-home a.cs-pivot-btn{color:var(--yellow);text-decoration:none}
.cs-pivot-btn.cs-pivot-yellow{background:var(--yellow);color:var(--ink)}
.cs-home a.cs-pivot-btn.cs-pivot-yellow,
.cs-pivot-home a.cs-pivot-btn.cs-pivot-yellow{color:var(--ink)}
.cs-pivot-btn.cs-pivot-yellow:hover{background:#ffe340}
.cs-pivot-btn.cs-pivot-outline{background:transparent;border:1.5px solid var(--ink);color:var(--ink)}
.cs-home a.cs-pivot-btn.cs-pivot-outline,
.cs-pivot-home a.cs-pivot-btn.cs-pivot-outline{color:var(--ink)}
.cs-pivot-btn.cs-pivot-outline.cs-pivot-on-dark{border-color:rgba(243,231,207,.55);color:var(--cream)}
.cs-home a.cs-pivot-btn.cs-pivot-outline.cs-pivot-on-dark,
.cs-pivot-home a.cs-pivot-btn.cs-pivot-outline.cs-pivot-on-dark{color:var(--cream)}
.cs-pivot-btn.cs-pivot-outline.cs-pivot-on-dark:hover{background:rgba(243,231,207,.08)}
.cs-pivot-btn.cs-pivot-outline:hover{background:rgba(20,20,20,.06)}
.cs-pivot-btn .cs-pivot-arr{transition:transform .25s ease}
.cs-pivot-btn:hover .cs-pivot-arr{transform:translateX(3px)}

h1,h2,h3{font-family:var(--font-head);font-weight:900;letter-spacing:-.02em;line-height:1.02}
.cs-pivot-t-or{color:var(--orange)}
.cs-pivot-t-te{color:var(--teal)}
.cs-pivot-t-ye{color:var(--yellow)}
.cs-pivot-t-cr{color:var(--cream)}
.cs-pivot-t-ink{color:var(--ink)}

p{font-size:16px;line-height:1.65;max-width:62ch}
p.cs-pivot-large{font-size:18px;line-height:1.6;max-width:48ch}
p.cs-pivot-on-dark{color:rgba(243,231,207,.78)}

/* ============ Photo helper ============ */
.cs-pivot-ph{
  position:relative;overflow:hidden;
  background:#1a1a1a;
}
.cs-pivot-ph > img,
.cs-pivot-ph > .brxe-image,
.cs-pivot-ph figure,
.cs-pivot-ph picture,
.cs-pivot-ph picture img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;display:block;
  /* tiny live tweak on top of the baked grade */
  filter:contrast(1.02);
}
.cs-pivot-ph .cs-pivot-ph-note{
  position:absolute;left:14px;bottom:14px;z-index:2;
  font-family:var(--font-mono);font-size:9.5px;letter-spacing:.18em;
  text-transform:uppercase;font-weight:700;
  color:rgba(243,231,207,.82);background:rgba(0,0,0,.32);
  padding:5px 9px;border-radius:6px;
}
.cs-pivot-ph-tag{position:absolute;left:18px;top:18px;z-index:3}
.cs-pivot-ph-tag.cs-pivot-tr{left:auto;right:18px}
.cs-pivot-ph-tag.cs-pivot-bl{top:auto;bottom:18px}
.cs-pivot-ph-tag.cs-pivot-br{left:auto;right:18px;top:auto;bottom:18px}

/* ============ NAV ============ */
.cs-pivot-nav{
  position:sticky;top:0;z-index:50;
  background:var(--paper);
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 56px;color:var(--ink);
  border-bottom:1px solid rgba(20,20,20,.08);
}
@media(max-width:1024px){.cs-pivot-nav{padding:16px 32px}}
@media(max-width:640px){.cs-pivot-nav{padding:14px 20px}}

.cs-pivot-nav-logo{display:flex;align-items:center;gap:14px}
.cs-pivot-nav-logo img{height:58px;width:auto}
.cs-pivot-nav-logo .cs-pivot-word{
  display:none;
  font-family:var(--font-mono);font-size:12px;
  letter-spacing:.22em;text-transform:uppercase;font-weight:700;
  color:var(--ink);
}

.cs-pivot-nav-right{display:flex;align-items:center;gap:8px;margin-left:auto}
.cs-pivot-nav-links{display:flex;gap:0;align-items:center}
.cs-pivot-nav-item{position:relative;display:flex;align-items:center}
.cs-pivot-nav-item::after{content:"";position:absolute;left:0;right:0;top:100%;height:12px}
.cs-pivot-nav-links a,
.cs-pivot-nav-trigger{
  font-family:var(--font-mono);font-weight:700;font-size:10.5px;
  letter-spacing:.06em;text-transform:uppercase;
  padding:10px 6px;color:var(--ink);transition:color .15s;
  text-decoration:none;white-space:nowrap;
}
.cs-pivot-nav-trigger{display:inline-flex;align-items:center;gap:6px;background:transparent;border:0;cursor:pointer}
.cs-pivot-nav-trigger::after{content:"⌄";font-size:12px;line-height:1;transform:translateY(-1px);transition:transform .18s ease}
.cs-pivot-nav-links a:hover,
.cs-pivot-nav-trigger:hover{color:var(--orange)}
.cs-pivot-nav-item:hover .cs-pivot-nav-trigger::after,
.cs-pivot-nav-item:focus-within .cs-pivot-nav-trigger::after{transform:translateY(1px) rotate(180deg)}
.cs-pivot-nav-dropdown{
  display:none!important;
  position:absolute!important;top:calc(100% + 10px)!important;left:50%!important;z-index:90;
  width:220px;padding:8px;border:1px solid rgba(20,20,20,.1);border-radius:18px;
  background:rgba(251,246,236,.98);box-shadow:0 20px 60px rgba(20,20,20,.14);
  opacity:0;visibility:hidden;pointer-events:none;transform:translate(-50%,6px);
}
.cs-pivot-nav-item:hover .cs-pivot-nav-dropdown,
.cs-pivot-nav-item:focus-within .cs-pivot-nav-dropdown{display:grid!important;opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%,0)}
.cs-pivot-nav-item--align-right .cs-pivot-nav-dropdown{left:auto!important;right:0!important;transform:translate(0,6px)}
.cs-pivot-nav-item--align-right:hover .cs-pivot-nav-dropdown,
.cs-pivot-nav-item--align-right:focus-within .cs-pivot-nav-dropdown{transform:translate(0,0)}
.cs-pivot-nav-dropdown a{display:flex;flex-direction:column;gap:3px;padding:11px 12px;border-radius:12px;letter-spacing:.1em;line-height:1.1}
.cs-pivot-nav-dropdown a:hover{background:rgba(242,106,31,.09)}
.cs-pivot-nav-dropdown small{font-family:'Space Grotesk',Inter,Arial,sans-serif;font-size:12px;font-weight:500;letter-spacing:0;text-transform:none;color:rgba(20,20,20,.62)}

@media(max-width:1320px){.cs-pivot-nav-links a,.cs-pivot-nav-trigger{padding:10px 5px;font-size:10px;letter-spacing:.035em}.cs-pivot-nav-right{gap:5px}.cs-pivot-btn{padding:13px 14px;font-size:11px;letter-spacing:.12em}}
@media(max-width:1120px){.cs-pivot-nav-links{display:none}}

/* ============ HERO ============ */
.cs-pivot-hero{
  position:relative;background:var(--ink);color:var(--cream);
  padding:60px 56px;min-height:calc(100vh - 60px);
  display:flex;flex-direction:column;justify-content:space-between;
  overflow:hidden;
}
@media(max-width:1024px){.cs-pivot-hero{padding:48px 32px}}
@media(max-width:640px){.cs-pivot-hero{padding:40px 20px}}

/* full-color photo backdrop */
.cs-pivot-hero::before{
  content:"";position:absolute;inset:0;z-index:0;
  background:
    url("images/pivot-home/lakeSunset.jpg") center/cover no-repeat;
  filter:contrast(1.02) saturate(1.05);
}
/* dark gradient bottom-left for text legibility, fades to clear top-right */
.cs-pivot-hero::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:
    radial-gradient(ellipse at 20% 90%,rgba(20,12,4,.78) 0%,rgba(20,12,4,.5) 35%,rgba(20,12,4,0) 65%),
    linear-gradient(180deg,rgba(20,20,20,.35) 0%,rgba(20,20,20,0) 35%,rgba(20,20,20,0) 100%);
  pointer-events:none;
}
.cs-pivot-hero > *{position:relative;z-index:2}

.cs-pivot-hero-top{
  display:flex;justify-content:space-between;
  font-family:var(--font-mono);font-size:12px;
  letter-spacing:.22em;text-transform:uppercase;font-weight:700;
  color:rgba(243,231,207,.7);gap:18px;flex-wrap:wrap;
}

.cs-pivot-hero-mid{
  flex:1;display:grid;grid-template-columns:2fr 1fr;gap:56px;align-items:stretch;
  padding-top:60px;
}
@media(max-width:880px){.cs-pivot-hero-mid{grid-template-columns:1fr;gap:32px}}

.cs-pivot-hero-lead{display:flex;flex-direction:column;justify-content:flex-end}

.cs-pivot-hero-eyebrow{
  font-family:var(--font-mono);font-size:12px;
  letter-spacing:.22em;text-transform:uppercase;font-weight:700;
  color:var(--orange);margin-bottom:18px;
}
.cs-pivot-hero-eyebrow::before{content:"☆ ";letter-spacing:.5em}

.cs-pivot-hero-title{
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(56px,9.5vw,168px);
  line-height:.94;letter-spacing:-.02em;
  color:var(--cream);
  text-transform:lowercase;
}
.cs-pivot-hero-title .cs-pivot-or{color:var(--orange)}

.cs-pivot-hero-side{
  display:flex;flex-direction:column;justify-content:flex-end;align-items:flex-start;
  padding-bottom:14px;
}
.cs-pivot-hero-actions{display:flex;flex-direction:column;gap:10px;align-items:stretch}
.cs-pivot-hero-actions .cs-pivot-btn{justify-content:flex-start}

/* ============ YELLOW STRIP ============ */
.cs-pivot-yellow-strip{
  background:var(--yellow);color:var(--ink);
  padding:0;
  overflow:hidden;
  border-bottom:1.5px solid var(--ink);
}
.cs-pivot-yellow-track{
  display:flex;align-items:center;gap:42px;width:max-content;
  padding:16px 56px;
  animation:cs-pivot-marquee 28s linear infinite;
  will-change:transform;
}
.cs-pivot-yellow-strip:hover .cs-pivot-yellow-track{animation-play-state:paused}
@keyframes cs-pivot-marquee{to{transform:translateX(-50%)}}
@media(max-width:1024px){.cs-pivot-yellow-track{padding:16px 32px;gap:34px}}
@media(max-width:640px){.cs-pivot-yellow-track{padding:14px 20px;gap:26px;animation-duration:22s}}
.cs-pivot-yellow-strip .cs-pivot-item{
  flex:0 0 auto;white-space:nowrap;
  font-family:var(--font-mono);font-size:12px;
  letter-spacing:.22em;text-transform:uppercase;font-weight:700;
}
.cs-pivot-yellow-strip .cs-pivot-item::before{content:"★ "}

/* ============ MANIFEST ============ */
.cs-pivot-manifest{padding:110px 0 100px;background:var(--paper)}
.cs-pivot-manifest-title{
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(48px,9vw,168px);
  line-height:.94;letter-spacing:-.02em;text-transform:uppercase;
  margin-bottom:48px;
}
.cs-pivot-manifest-title .cs-pivot-row{display:block}
.cs-pivot-manifest-title .cs-pivot-row p{font:inherit;font-size:inherit;line-height:inherit;margin:0;color:inherit}
.cs-pivot-manifest-title .cs-pivot-row + .cs-pivot-row{margin-top:.04em}
.cs-pivot-manifest-title .cs-pivot-w-teal{color:var(--teal)}
.cs-pivot-manifest-title .cs-pivot-w-ink{color:var(--ink)}
.cs-pivot-manifest-title .cs-pivot-w-orange{color:var(--orange)}
.cs-pivot-manifest-title .cs-pivot-w-cutout{
  background-clip:text;-webkit-background-clip:text;
  color:transparent;-webkit-text-fill-color:transparent;
  background-position:center 60%;
  background-size:cover;
  background-repeat:no-repeat;
}

.cs-pivot-manifest-body{
  font-family:'Space Grotesk', Inter, Arial, sans-serif;
  max-width:560px;font-size:15px;line-height:1.65;color:#3a3a3a;margin-bottom:0;
}

/* ============ ÖFFNUNGSZEITEN (open, paper-style) ============ */
.cs-pivot-hours-section{background:#f7efdf;padding:88px 0 96px;border-top:1px solid rgba(20,20,20,.08)}

.cs-pivot-hours-grid{
  display:grid;grid-template-columns:1fr 1.1fr;gap:80px;align-items:start;
  margin-top:0;
}
@media(max-width:960px){.cs-pivot-hours-grid{grid-template-columns:1fr;gap:40px}}

.cs-pivot-hours-overhead{
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(48px,7vw,112px);
  line-height:.94;letter-spacing:-.02em;text-transform:lowercase;
  color:var(--ink);margin:8px 0 24px;
}

.cs-pivot-hours-tag{
  font-family:var(--font-mono);
  font-size:12px;letter-spacing:.22em;text-transform:uppercase;font-weight:700;
  color:#3a3a3a;line-height:1.5;
  margin-bottom:20px;padding-bottom:18px;
  border-bottom:1.5px solid var(--ink);
}
.cs-pivot-hours-tag .cs-pivot-t-or{font-family:var(--font-mono);color:var(--orange)}

.cs-pivot-hours-intro{
  font-size:15.5px;line-height:1.65;color:#3a3a3a;
  max-width:42ch;margin:0 0 24px;
}
.cs-pivot-hours-section .cs-pivot-hours-left .cs-pivot-btn{align-self:flex-start}

.cs-pivot-hours-right{display:flex;flex-direction:column;border-top:1.5px solid var(--ink);padding-top:6px}
.cs-pivot-hours-right .cs-pivot-hours-tag{
  border-bottom:0;padding-bottom:0;margin:6px 0 14px;
}
.cs-pivot-hours-row{
  display:flex;align-items:baseline;gap:14px;
  padding:18px 0;border-bottom:1px solid rgba(20,20,20,.18);
}
.cs-pivot-hours-row::before{content:"";flex:1;order:2;border-bottom:1.5px dotted rgba(20,20,20,.32);transform:translateY(-4px)}
.cs-pivot-hours-row .cs-pivot-d{order:1}
.cs-pivot-hours-row .cs-pivot-t{order:3}
.cs-pivot-hours-row .cs-pivot-d{
  font-family:var(--font-mono);font-size:12px;letter-spacing:.22em;
  text-transform:uppercase;font-weight:700;color:var(--ink);
  min-width:13ch;
}
.cs-pivot-hours-row .cs-pivot-dot{flex:1;border-bottom:1.5px dotted rgba(20,20,20,.32);transform:translateY(-4px)}
.cs-pivot-hours-row .cs-pivot-t{
  font-family:var(--font-display);font-size:clamp(26px,2.4vw,36px);
  line-height:1;letter-spacing:-.01em;color:var(--orange);white-space:nowrap;
}

/* ============ GRUPPEN & ÖFFNUNGSZEITEN ============ */
.cs-pivot-gh-section{background:var(--paper);padding:0}
.cs-pivot-gh-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:0;
  align-items:stretch;
  border-top:1px solid rgba(20,20,20,.08);
}
@media(max-width:960px){.cs-pivot-gh-grid{grid-template-columns:1fr}}

.cs-pivot-gh-photo{position:relative;min-height:600px;background:#1a1a1a;overflow:hidden}
.cs-pivot-gh-photo .cs-pivot-ph{position:absolute;inset:0;border-radius:0}
.cs-pivot-gh-photo-word{
  position:absolute;left:56px;top:113px;z-index:3;
  font-family:var(--font-display);
  font-size:clamp(64px,8.5vw,140px);
  line-height:.92;letter-spacing:-.02em;text-transform:lowercase;
  color:var(--teal);
  pointer-events:none;
}
@media(max-width:1024px){.cs-pivot-gh-photo-word{left:32px}}
@media(max-width:960px){.cs-pivot-gh-photo{min-height:380px}.cs-pivot-gh-photo-word{left:24px;top:auto;bottom:24px}}

/* Cutout-Headline in der Teal-Karte: Bild scheint durchs Wort */
.cs-pivot-gh-title .cs-pivot-w-cutout{
  background-clip:text;-webkit-background-clip:text;
  color:transparent;-webkit-text-fill-color:transparent;
  background-size:cover;background-position:center 45%;background-repeat:no-repeat;
  display:inline-block;
}

.cs-pivot-gh-card{
  padding:72px 56px;display:flex;flex-direction:column;gap:24px;
  min-height:600px;
}
@media(max-width:1024px){.cs-pivot-gh-card{padding:56px 32px}}
@media(max-width:640px){.cs-pivot-gh-card{padding:48px 20px;min-height:0}}

.cs-pivot-gh-ink{background:var(--ink);color:var(--cream)}
.cs-pivot-gh-teal{background:var(--teal);color:var(--cream)}

.cs-pivot-gh-ink .cs-pivot-label.cs-pivot-on-dark{color:var(--cream)}
.cs-pivot-gh-ink .cs-pivot-label.cs-pivot-on-dark::before{background:var(--orange)}
.cs-pivot-gh-teal .cs-pivot-label.cs-pivot-on-dark{color:var(--cream)}
.cs-pivot-gh-teal .cs-pivot-label.cs-pivot-on-dark::before{background:var(--yellow)}

.cs-pivot-gh-title{
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(64px,8.5vw,140px);
  line-height:.92;letter-spacing:-.02em;text-transform:lowercase;
}
.cs-pivot-gh-ink .cs-pivot-gh-title,.cs-pivot-gh-teal .cs-pivot-gh-title{color:var(--cream)}

.cs-pivot-gh-body{font-family:'Space Grotesk', Inter, Arial, sans-serif;font-size:15.5px;line-height:1.65;max-width:42ch;margin-bottom:0}
.cs-pivot-gh-ink .cs-pivot-gh-body{color:rgba(243,231,207,.86)}
.cs-pivot-gh-teal .cs-pivot-gh-body{color:rgba(243,231,207,.94)}

.cs-pivot-gh-list{list-style:none;padding:0;margin:8px 0 8px}
.cs-pivot-gh-list li{
  display:flex;justify-content:space-between;align-items:baseline;gap:18px;
  padding:14px 0;
  border-bottom:1px solid rgba(243,231,207,.18);
  font-family:var(--font-mono);font-size:12px;letter-spacing:.18em;
  text-transform:uppercase;font-weight:700;color:rgba(243,231,207,.85);
}
.cs-pivot-gh-list li .cs-pivot-m{color:var(--yellow);letter-spacing:.18em}

.cs-pivot-gh-hours{margin-top:4px;border-top:1px solid rgba(243,231,207,.28)}
.cs-pivot-gh-hours .cs-pivot-hr{
  display:flex;justify-content:space-between;align-items:baseline;gap:18px;
  padding:14px 0;border-bottom:1px solid rgba(243,231,207,.28);
}
.cs-pivot-gh-hours .cs-pivot-d{
  font-family:var(--font-mono);font-size:12px;letter-spacing:.22em;
  text-transform:uppercase;font-weight:700;color:rgba(243,231,207,.85);
}
.cs-pivot-gh-hours .cs-pivot-t{
  font-family:var(--font-display);font-size:26px;letter-spacing:-.01em;
  color:var(--yellow);
}

.cs-pivot-gh-note{
  font-size:13.5px;line-height:1.6;color:rgba(243,231,207,.78);
  max-width:42ch;
}

.cs-pivot-gh-card .cs-pivot-btn{align-self:flex-start;margin-top:auto}
.cs-pivot-gh-ink .cs-pivot-btn{background:var(--yellow);color:var(--ink)}
.cs-pivot-gh-ink .cs-pivot-btn.cs-pivot-yellow{background:var(--yellow);color:var(--ink)}
.cs-pivot-gh-teal .cs-pivot-btn{background:var(--ink);color:var(--yellow)}

/* ============ CREW (sektion 2 — full-width, flat) ============ */
.cs-pivot-crew{padding:96px 0 110px;background:var(--cream);border-top:1px solid rgba(20,20,20,.08)}
.cs-pivot-crew-head{margin-bottom:48px}
.cs-pivot-crew-title{
  font-family:var(--font-display);
  font-size:clamp(44px,7.5vw,128px);
  line-height:.94;letter-spacing:-.02em;text-transform:uppercase;
}

/* Photos go full-bleed across the viewport */
.cs-pivot-crew-photos{
  width:100vw;margin-left:calc(50% - 50vw);
  display:grid;grid-template-columns:repeat(3,1fr);gap:0;
}
.cs-pivot-crew-photos .cs-pivot-ph{
  aspect-ratio:16/9;border-radius:0;
}
@media(max-width:960px){
  .cs-pivot-crew{display:grid;grid-template-columns:1fr}
  .cs-pivot-crew-head{order:1}
  .cs-pivot-crew-photos,.cs-pivot-crew-meta{display:contents}
  .cs-pivot-crew-photos .cs-pivot-ph{width:100%;aspect-ratio:3/2;border-radius:0}
  .cs-pivot-crew-photos .cs-pivot-ph:nth-child(1){order:2}
  .cs-pivot-crew-meta .cs-pivot-crew-item:nth-child(1){order:3}
  .cs-pivot-crew-photos .cs-pivot-ph:nth-child(2){order:4}
  .cs-pivot-crew-meta .cs-pivot-crew-item:nth-child(2){order:5}
  .cs-pivot-crew-photos .cs-pivot-ph:nth-child(3){order:6}
  .cs-pivot-crew-meta .cs-pivot-crew-item:nth-child(3){order:7}
}

/* Captions sit directly below each photo — same full-bleed grid */
.cs-pivot-crew-meta{
  width:100vw;margin-left:calc(50% - 50vw);
  display:grid;grid-template-columns:repeat(3,1fr);gap:0;
  margin-top:32px;
}
@media(max-width:960px){.cs-pivot-crew-meta{grid-template-columns:1fr;margin-top:0}}

.cs-pivot-crew-item{
  display:flex;flex-direction:column;gap:12px;
  padding:0 24px 0 24px;
}
.cs-pivot-crew-item:first-child{padding-left:56px}
.cs-pivot-crew-item:last-child{padding-right:56px}
@media(max-width:1024px){
  .cs-pivot-crew-item:first-child{padding-left:32px}
  .cs-pivot-crew-item:last-child{padding-right:32px}
}
@media(max-width:960px){
  .cs-pivot-crew-item{padding:24px 32px 0 32px !important}
}
@media(max-width:640px){
  .cs-pivot-crew-item{padding:20px 20px 0 20px !important}
}
.cs-pivot-crew-num{
  font-family:var(--font-display);
  font-size:50px;line-height:.88;text-transform:uppercase;letter-spacing:-.02em;
  color:var(--teal);
}
.cs-pivot-crew-item.cs-pivot-n2 .cs-pivot-crew-num{color:var(--orange)}
.cs-pivot-crew-item.cs-pivot-n3 .cs-pivot-crew-num{color:var(--teal)}
.cs-pivot-crew-item h3{
  font-family:var(--font-head);font-weight:900;
  font-size:24px;letter-spacing:-.02em;line-height:1.15;
  margin-top:-4px;
}
.cs-pivot-crew-item p{font-size:14.5px;color:#3a3a3a;line-height:1.6;max-width:38ch}
.cs-pivot-crew-more{
  font-family:var(--font-mono);font-weight:700;font-size:12px;
  letter-spacing:.22em;text-transform:uppercase;color:var(--ink);
  display:inline-flex;align-items:center;gap:6px;margin-top:4px;
}
.cs-pivot-crew-more::before{content:"→  "}

/* ============ DETAIL ============ */
.cs-pivot-detail{padding:110px 0;background:var(--paper)}
.cs-pivot-detail-head{
  display:grid;grid-template-columns:1.6fr 1fr;gap:48px;align-items:end;
  margin-bottom:48px;
}
@media(max-width:960px){.cs-pivot-detail-head{grid-template-columns:1fr}}
.cs-pivot-detail-head h2{
  font-family:var(--font-display);
  font-size:clamp(32px,5vw,84px);
  line-height:.94;letter-spacing:-.02em;text-transform:uppercase;
  white-space:nowrap;
}
@media(max-width:960px){.cs-pivot-detail-head h2{white-space:normal}}
.cs-pivot-detail-head p{font-size:14.5px;color:#3a3a3a;max-width:38ch;line-height:1.6;padding-bottom:14px}

.cs-pivot-detail-grid{
  display:grid;grid-template-columns:1.5fr 1fr;gap:14px;
  grid-template-rows:1fr 1fr;min-height:520px;
  align-items:stretch;
}
@media(max-width:960px){.cs-pivot-detail-grid{grid-template-columns:1fr;grid-template-rows:auto;min-height:0}}

.cs-pivot-dcard{position:relative;overflow:hidden}

/* Big ink card — clean, no photo backdrop */
.cs-pivot-dcard-ink{
  grid-row:span 2;
  background:var(--ink);color:var(--cream);
  padding:36px;
  display:flex;flex-direction:column;justify-content:space-between;
  min-height:520px;
}
@media(max-width:960px){.cs-pivot-dcard-ink{grid-row:auto;min-height:380px}}

.cs-pivot-dcard-ink .cs-pivot-dcard-head{
  display:flex;justify-content:space-between;align-items:flex-start;gap:14px;flex-wrap:wrap;
}
.cs-pivot-dcard-ink .cs-pivot-dcard-mono{
  font-family:var(--font-mono);font-size:12px;letter-spacing:.22em;
  text-transform:uppercase;font-weight:700;color:var(--orange);
}
.cs-pivot-dcard-ink .cs-pivot-word{
  font-family:var(--font-display);
  font-size:clamp(56px,7vw,118px);
  line-height:.94;letter-spacing:-.02em;text-transform:lowercase;
  color:var(--cream);margin-top:auto;
}
.cs-pivot-dcard-ink .cs-pivot-body-row{
  margin-top:18px;display:flex;justify-content:space-between;
  align-items:flex-end;gap:16px;flex-wrap:wrap;
}
.cs-pivot-dcard-ink .cs-pivot-body-row p{font-size:14px;line-height:1.55;max-width:38ch;color:rgba(243,231,207,.92)}
.cs-pivot-dcard-ink .cs-pivot-more{
  font-family:var(--font-mono);font-weight:700;font-size:12px;
  letter-spacing:.22em;text-transform:uppercase;color:var(--orange);
  white-space:nowrap;display:inline-flex;align-items:center;gap:6px;
}
.cs-pivot-dcard-ink .cs-pivot-more::before{content:"→  "}

/* Right column: photo-left + content-right split */
.cs-pivot-dcard-split{
  display:grid;grid-template-columns:1fr 1fr;
  align-items:stretch;
  min-height:253px;height:100%;
}
@media(max-width:560px){.cs-pivot-dcard-split{grid-template-columns:1fr;min-height:0}}
.cs-pivot-dcard-split .cs-pivot-ph{
  border-radius:0;height:100%;min-height:240px;
}
@media(max-width:560px){.cs-pivot-dcard-split .cs-pivot-ph{min-height:200px}}
.cs-pivot-dcard-split .cs-pivot-content{
  padding:24px;
  display:flex;flex-direction:column;justify-content:space-between;
  gap:14px;
}
.cs-pivot-dcard-orange{background:var(--orange);color:var(--ink)}
.cs-pivot-dcard-cream{background:var(--cream);color:var(--ink);border:1px solid rgba(20,20,20,.06)}

.cs-pivot-dcard-split .cs-pivot-dcard-mono{
  font-family:var(--font-mono);font-size:12px;letter-spacing:.22em;
  text-transform:uppercase;font-weight:700;
}
.cs-pivot-dcard-orange .cs-pivot-dcard-mono{color:rgba(20,20,20,.7)}
.cs-pivot-dcard-cream .cs-pivot-dcard-mono{color:#666}

.cs-pivot-dcard-split .cs-pivot-word{
  font-family:var(--font-display);
  font-size:clamp(44px,5vw,84px);
  line-height:.94;letter-spacing:-.02em;text-transform:lowercase;
}
.cs-pivot-dcard-orange .cs-pivot-word{color:var(--yellow)}
.cs-pivot-dcard-cream .cs-pivot-word{color:var(--orange)}

.cs-pivot-dcard-split p{font-size:13px;line-height:1.55;margin-top:6px}
.cs-pivot-dcard-orange p{color:rgba(20,20,20,.82)}
.cs-pivot-dcard-cream p{color:#3a3a3a}

.cs-pivot-dcard-split .cs-pivot-more{
  font-family:var(--font-mono);font-weight:700;font-size:12px;
  letter-spacing:.22em;text-transform:uppercase;
  display:inline-flex;align-items:center;gap:6px;margin-top:6px;
}
.cs-pivot-dcard-split .cs-pivot-more::before{content:"→  "}
.cs-pivot-dcard-orange .cs-pivot-more{color:var(--ink)}
.cs-pivot-dcard-cream .cs-pivot-more{color:var(--orange)}

/* ============ PRICING ============ */
.cs-pivot-pricing{background:var(--ink);color:var(--cream)}
.cs-pivot-pricing-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;align-items:stretch}
@media(max-width:960px){.cs-pivot-pricing-grid{grid-template-columns:1fr}}

.cs-pivot-pricing-left{padding:110px 56px;display:flex;flex-direction:column;justify-content:center}
@media(max-width:1024px){.cs-pivot-pricing-left{padding:80px 32px}}
@media(max-width:640px){.cs-pivot-pricing-left{padding:64px 20px}}

.cs-pivot-pricing-title{
  font-family:var(--font-display);
  font-size:clamp(48px,8vw,128px);
  line-height:.94;letter-spacing:-.02em;text-transform:uppercase;
}
.cs-pivot-pricing-title .cs-pivot-l1{color:var(--cream);display:block}
.cs-pivot-pricing-title .cs-pivot-l2{color:var(--yellow);display:block}
.cs-pivot-pricing-title .cs-pivot-l3{color:var(--orange);display:block}

.cs-pivot-price-list{margin-top:48px}
.cs-pivot-price-row{
  display:flex;justify-content:space-between;align-items:baseline;
  padding:20px 0;border-bottom:1px solid rgba(243,231,207,.18);gap:18px;
}
.cs-pivot-price-row .cs-pivot-n{font-family:var(--font-head);font-weight:900;font-size:22px;letter-spacing:-.01em;color:var(--cream)}
.cs-pivot-price-row .cs-pivot-p{
  font-family:var(--font-display);font-size:34px;line-height:.92;
  color:var(--yellow);letter-spacing:-.01em;text-transform:uppercase;
}
.cs-pivot-price-cta{margin-top:36px}

.cs-pivot-pricing-right{position:relative;min-height:520px}
.cs-pivot-pricing-right .cs-pivot-ph{width:100%;height:100%;border-radius:0;position:absolute;inset:0}
@media(max-width:960px){.cs-pivot-pricing-right{min-height:420px}}

/* ============ BEACH ============ */
.cs-pivot-beach-section{background:linear-gradient(180deg,#daac0d,#ff7505);color:var(--ink);padding:110px 0 96px}
.cs-pivot-beach-title{
  font-family:var(--font-display);
  font-size:clamp(56px,10vw,180px);
  line-height:.94;letter-spacing:-.02em;text-transform:uppercase;
  margin-bottom:48px;
}
.cs-pivot-beach-title .cs-pivot-row{display:flex;align-items:baseline;flex-wrap:wrap;gap:.18em;line-height:.94}
.cs-pivot-beach-title .cs-pivot-row p{font:inherit;font-size:inherit;line-height:inherit;margin:0;color:inherit}
.cs-pivot-beach-title .cs-pivot-w-teal{color:var(--teal-deep)}
.cs-pivot-beach-title .cs-pivot-w-cutout{
  background-clip:text;-webkit-background-clip:text;
  color:transparent;-webkit-text-fill-color:transparent;
  background-size:cover;background-position:center 55%;background-repeat:no-repeat;
}
.cs-pivot-beach-title .cs-pivot-row:first-child .cs-pivot-w-cutout{background-image:url('http://localhost:10049/wp-content/uploads/tobricks/images/pivot-home/gastroBar.jpg')}
.cs-pivot-beach-title .cs-pivot-row:last-child .cs-pivot-w-cutout{background-image:url('http://localhost:10049/wp-content/uploads/tobricks/images/pivot-home/djStrandklub.jpg')}

.cs-pivot-beach-bottom{
  display:grid;grid-template-columns:1.1fr auto;gap:48px;align-items:end;
}
@media(max-width:880px){.cs-pivot-beach-bottom{grid-template-columns:1fr}}
.cs-pivot-beach-bottom p{font-size:15px;line-height:1.6;color:rgba(20,20,20,.92);max-width:50ch}
.cs-pivot-beach-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}

/* ============ PARAT ============ */
.cs-pivot-parat{background:var(--paper);padding:96px 0 0}
.cs-pivot-parat-head{margin-bottom:48px}
.cs-pivot-parat-head h2{
  font-family:var(--font-head);font-weight:900;
  font-size:clamp(40px,6.5vw,84px);letter-spacing:-.02em;
}
.cs-pivot-parat-head h2 .cs-pivot-or{color:var(--orange)}

.cs-pivot-parat-grid{
  display:grid;grid-template-columns:1fr 1fr;
  align-items:stretch;
  border-top:1px solid rgba(20,20,20,.08);
}
@media(max-width:880px){
  .cs-pivot-parat-grid{grid-template-columns:1fr}
  .cs-pivot-parat-grid > :nth-child(1){order:1}
  .cs-pivot-parat-grid > :nth-child(2){order:2}
  .cs-pivot-parat-grid > :nth-child(4){order:3}
  .cs-pivot-parat-grid > :nth-child(3){order:4}
  .cs-pivot-parat-grid > :nth-child(5){order:5}
  .cs-pivot-parat-grid > :nth-child(6){order:6}
}

.cs-pivot-parat-photo{position:relative;min-height:380px;border-right:1px solid rgba(20,20,20,.06);border-bottom:1px solid rgba(20,20,20,.06)}
.cs-pivot-parat-photo:nth-child(2n){border-right:0}
.cs-pivot-parat-photo .cs-pivot-ph{position:absolute;inset:0;border-radius:0}

.cs-pivot-parat-content{
  position:relative;
  padding:48px 56px;background:var(--paper);
  display:flex;flex-direction:column;justify-content:center;gap:18px;
  border-bottom:1px solid rgba(20,20,20,.06);
  border-right:1px solid rgba(20,20,20,.06);
}
.cs-pivot-parat-content:nth-child(2n){border-right:0}
@media(max-width:1024px){.cs-pivot-parat-content{padding:40px 32px}}
@media(max-width:640px){.cs-pivot-parat-content{padding:36px 20px}}
.cs-pivot-parat-content .cs-pivot-num{
  font-family:var(--font-display);
  font-size:clamp(72px,8vw,128px);line-height:.88;text-transform:uppercase;letter-spacing:-.02em;
  color:var(--teal);
}
.cs-pivot-parat-content.cs-pivot-n2{background:var(--teal);color:var(--cream)}
.cs-pivot-parat-content.cs-pivot-n2 .cs-pivot-num{color:var(--yellow)}
.cs-pivot-parat-content.cs-pivot-n2 h3{color:var(--cream)}
.cs-pivot-parat-content.cs-pivot-n2 p{color:rgba(243,231,207,.85)}
.cs-pivot-parat-content.cs-pivot-n3 .cs-pivot-num{color:var(--orange)}
.cs-pivot-parat-content h3{
  font-family:var(--font-head);font-weight:900;
  font-size:28px;letter-spacing:-.02em;line-height:1.1;max-width:14ch;
}
.cs-pivot-parat-content p{font-size:14.5px;line-height:1.6;color:#3a3a3a;max-width:42ch}
.cs-pivot-parat-content .cs-pivot-btn{margin-top:6px;align-self:flex-start}

/* ============ FOOTER ============ */
.cs-pivot-footer{background:var(--ink);color:var(--cream);padding:80px 0 28px}
.cs-pivot-foot-grid{
  display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr;gap:40px;
}
@media(max-width:960px){.cs-pivot-foot-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.cs-pivot-foot-grid{grid-template-columns:1fr}}

.cs-pivot-foot-brand img{height:30px;margin-bottom:18px}
.cs-pivot-foot-brand p{
  margin-top:0;color:rgba(243,231,207,.7);
  font-size:14px;max-width:30ch;line-height:1.65;
}

.cs-pivot-foot-col h4{
  font-family:var(--font-mono);font-size:12px;letter-spacing:.22em;
  text-transform:uppercase;font-weight:700;color:var(--orange);
  margin-bottom:18px;
}
.cs-pivot-foot-col h4::before{content:"→  "}
.cs-pivot-foot-col a,.cs-pivot-foot-col p{
  display:block;font-size:14.5px;color:rgba(243,231,207,.85);
  padding:5px 0;line-height:1.65;
}
.footer__brand-text.footer__brand-text{font-size:14px!important;line-height:1.6!important}
.footer__nav-heading.footer__nav-heading{font-size:13px!important;line-height:1.25!important}
.footer__nav-link.footer__nav-link,.footer__contact-link.footer__contact-link,.footer__contact-text.footer__contact-text{font-size:14px!important;line-height:1.75!important}
.footer__legal-link.footer__legal-link,.footer__copy.footer__copy{font-size:12px!important;line-height:1.55!important}
.cs-pivot-foot-col a:hover{color:var(--orange)}

.cs-pivot-foot-tagline{
  margin-top:64px;padding-top:32px;
  border-top:1px solid rgba(243,231,207,.14);
  display:grid;grid-template-columns:1fr auto;gap:32px;align-items:center;
}
@media(max-width:880px){.cs-pivot-foot-tagline{grid-template-columns:1fr}}
.cs-pivot-foot-tagline .cs-pivot-big{
  font-family:var(--font-display);font-size:clamp(26px,3.8vw,48px);
  line-height:.96;letter-spacing:-.02em;text-transform:uppercase;
  max-width:22ch;
}
.cs-pivot-foot-tagline .cs-pivot-big .cs-pivot-y{color:var(--teal)}
.cs-pivot-foot-tagline .cs-pivot-big .cs-pivot-o{color:var(--orange)}
.cs-pivot-foot-actions{display:flex;gap:10px;flex-wrap:wrap}

.cs-pivot-foot-meta{
  margin-top:32px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:14px;
  font-family:var(--font-mono);font-size:12px;letter-spacing:.18em;
  text-transform:uppercase;color:rgba(243,231,207,.5);font-weight:700;
}

@media(max-width:880px){
  .cs-pivot-manifest,.cs-pivot-crew,.cs-pivot-detail,.cs-pivot-beach-section{padding:72px 0}
  .cs-pivot-footer{padding:64px 0 24px}
}

/* Bricks runtime hardening for pivot feedback fixes */
.cs-pivot-yellow-track.cs-pivot-yellow-track{display:inline-flex!important;width:auto!important;min-width:max-content!important;flex-wrap:nowrap!important}
.cs-pivot-yellow-track.cs-pivot-yellow-track > .cs-pivot-item{width:auto!important;flex:0 0 auto!important;min-width:0!important}
@media(max-width:960px){
  .cs-pivot-crew.cs-pivot-crew{display:grid!important;grid-template-columns:1fr!important}
  .cs-pivot-crew .cs-pivot-crew-photos,.cs-pivot-crew .cs-pivot-crew-meta{display:contents!important}
  .cs-pivot-crew .cs-pivot-crew-photos .cs-pivot-ph{width:100%!important;margin:0!important}
  .cs-pivot-crew .cs-pivot-crew-photos .cs-pivot-ph:nth-child(1){order:2!important}
  .cs-pivot-crew .cs-pivot-crew-meta .cs-pivot-crew-item:nth-child(1){order:3!important}
  .cs-pivot-crew .cs-pivot-crew-photos .cs-pivot-ph:nth-child(2){order:4!important}
  .cs-pivot-crew .cs-pivot-crew-meta .cs-pivot-crew-item:nth-child(2){order:5!important}
  .cs-pivot-crew .cs-pivot-crew-photos .cs-pivot-ph:nth-child(3){order:6!important}
  .cs-pivot-crew .cs-pivot-crew-meta .cs-pivot-crew-item:nth-child(3){order:7!important}
}

/* ===== /Cablesport pivot home ===== */

/* </pivot-home-generated> */

/* <cablesport-subpage-modules> */
.cs-subpage{background:var(--cream,#f3e7cf);color:var(--ink,#141414)}
.cs-subpage-section{padding:clamp(64px,8vw,112px) 28px}.cs-subpage-wrap{max-width:1220px;margin:0 auto}.cs-subpage-label{display:inline-flex;margin-bottom:18px;font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--orange,#f26a1f)}.cs-subpage-title{margin:0;font-family:var(--font-display,var(--font-heading));font-size:clamp(34px,5.2vw,74px);font-weight:400;line-height:.94;letter-spacing:-.02em;text-transform:uppercase;color:var(--ink,#141414)}.cs-subpage-title span{color:var(--orange,#f26a1f)}.cs-subpage-lead{max-width:760px;margin:22px 0 0;font-size:clamp(18px,1.5vw,23px);line-height:1.48;color:rgba(20,20,20,.72)}
.cs-sub-hero{padding:104px 28px 56px;background:linear-gradient(180deg,#fff7e7 0%,var(--cream,#f3e7cf) 100%)}.cs-sub-hero__grid{max-width:1220px;margin:0 auto;display:grid;grid-template-columns:minmax(0,.98fr) minmax(320px,.72fr);gap:clamp(32px,6vw,74px);align-items:stretch}.cs-sub-hero__kicker{display:inline-flex;margin-bottom:18px;padding:7px 11px;border:1px solid rgba(20,20,20,.14);border-radius:999px;font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:rgba(20,20,20,.72)}.cs-sub-hero__title{margin:0;font-family:var(--font-display,var(--font-heading));font-size:clamp(36px,5.6vw,76px);font-weight:400;line-height:.94;letter-spacing:-.02em;text-transform:uppercase;color:var(--ink,#141414)}.cs-sub-hero__title span{display:block;color:var(--orange,#f26a1f)}.cs-sub-hero__copy{max-width:690px;margin:24px 0 0;font-size:clamp(18px,1.5vw,23px);line-height:1.48;color:rgba(20,20,20,.74)}.cs-sub-hero__actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}.cs-sub-hero__visual{display:grid;grid-template-rows:minmax(390px,1fr) auto;gap:14px;align-items:stretch}.cs-sub-hero__photo{overflow:hidden;border-radius:18px;min-height:390px;height:100%;background:rgba(20,20,20,.08);box-shadow:0 18px 60px rgba(20,20,20,.13)}.cs-sub-hero__photo .brxe-image,.cs-sub-hero__photo figure,.cs-sub-hero__photo picture,.cs-sub-hero__photo img{width:100%;height:100%;display:block}.cs-sub-hero__photo img{object-fit:cover}.cs-sub-hero__facts{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.cs-sub-hero__fact{padding:15px;border-radius:14px;background:rgba(255,255,255,.72);border:1px solid rgba(20,20,20,.08)}.cs-sub-hero__fact-number{display:block;font-family:var(--font-display,var(--font-heading));font-size:26px;font-weight:400;line-height:1;color:var(--teal,#3fa39e)}.cs-sub-hero__fact-label{display:block;margin-top:6px;font-family:var(--font-mono,ui-monospace,monospace);font-size:10px;font-weight:800;letter-spacing:.11em;text-transform:uppercase;color:rgba(20,20,20,.58)}
.cs-sub-rail{display:none}.cs-sub-rail__inner{max-width:1220px;margin:0 auto;display:flex;gap:8px;overflow-x:auto;padding:13px 28px}.cs-sub-rail a{flex:0 0 auto;padding:9px 12px;border-radius:999px;background:rgba(20,20,20,.045);font-family:var(--font-mono,ui-monospace,monospace);font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:rgba(20,20,20,.72);text-decoration:none}
.cs-info-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:36px}.cs-info-card{padding:28px;border-radius:18px;background:rgba(255,255,255,.7);border:1px solid rgba(20,20,20,.08)}.cs-info-card__num{font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:800;letter-spacing:.14em;color:var(--orange,#f26a1f)}.cs-info-card h3{margin:18px 0 12px;font-family:var(--font-display,var(--font-heading));font-size:32px;font-weight:400;line-height:1;color:var(--ink,#141414)}.cs-info-card p{margin:0;font-size:17px;line-height:1.62;color:rgba(20,20,20,.68)}
.cs-ticket-list{display:grid;gap:14px;margin-top:38px}.cs-ticket{display:grid;grid-template-columns:120px minmax(0,1fr) auto;gap:24px;align-items:center;padding:24px;border-radius:18px;background:#fff;border:1px solid rgba(20,20,20,.08);box-shadow:0 12px 34px rgba(20,20,20,.055)}.cs-ticket__price{font-family:var(--font-display,var(--font-heading));font-size:40px;line-height:.9;color:var(--teal,#3fa39e)}.cs-ticket h3{margin:0 0 8px;font-family:var(--font-display,var(--font-heading));font-size:34px;font-weight:400;color:var(--ink,#141414)}.cs-ticket p{margin:0;color:rgba(20,20,20,.68);line-height:1.58}.cs-ticket__link{font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--orange,#f26a1f);white-space:nowrap}
.cs-split{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1fr);gap:40px;align-items:stretch}.cs-split__media{overflow:hidden;border-radius:20px;min-height:520px;background:rgba(20,20,20,.08)}.cs-split__media img{width:100%;height:100%;object-fit:cover}.cs-split__panel{padding:clamp(32px,5vw,56px);border-radius:20px;background:var(--teal,#3fa39e);color:var(--cream,#f3e7cf)}.cs-split__panel .cs-subpage-label{color:var(--yellow,#ffd60a)}.cs-split__panel h2{margin:0;font-family:var(--font-display,var(--font-heading));font-size:clamp(34px,4.2vw,58px);font-weight:400;line-height:.96;color:var(--cream,#f3e7cf);text-transform:uppercase}.cs-split__panel p{margin:22px 0 0;font-size:18px;line-height:1.58;color:rgba(243,231,207,.84)}.cs-check-list{display:grid;gap:10px;margin-top:26px}.cs-check{display:grid;grid-template-columns:22px 1fr;gap:12px;padding:14px 0;border-top:1px solid rgba(243,231,207,.18);font-size:16px;line-height:1.5;color:rgba(243,231,207,.86)}.cs-check::before{content:"→";color:var(--yellow,#ffd60a);font-weight:900}
.cs-rental{margin-top:36px;border-radius:20px;overflow:hidden;background:#fff;border:1px solid rgba(20,20,20,.08)}.brxe-block.cs-split__media.cs-split__media--menu img,.cs-split__media--menu .brxe-image,.cs-split__media--menu figure,.cs-split__media--menu picture,.cs-split__media--menu img{object-fit:contain!important}.cs-rental__row{display:grid;grid-template-columns:minmax(180px,1.4fr) repeat(3,minmax(90px,.6fr));gap:1px;border-bottom:1px solid rgba(20,20,20,.08)}.cs-rental__row:last-child{border-bottom:0}.cs-rental__cell{padding:17px 20px;font-size:16px;color:rgba(20,20,20,.72)}.cs-rental__head .cs-rental__cell{background:var(--ink,#141414);color:var(--cream,#f3e7cf);font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.cs-rental__name{font-weight:800;color:var(--ink,#141414)}
.cs-compare-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin-top:38px}.cs-compare-card{border-radius:20px;overflow:hidden;background:#fff;border:1px solid rgba(20,20,20,.08)}.cs-compare-card__image{height:310px}.cs-compare-card__image img{width:100%;height:100%;object-fit:cover}.cs-compare-card__body{padding:30px}.cs-compare-card h3{margin:0 0 12px;font-family:var(--font-display,var(--font-heading));font-size:40px;font-weight:400;color:var(--ink,#141414)}.cs-compare-card p{margin:0;line-height:1.62;color:rgba(20,20,20,.68)}
.cs-quiet-cta{background:var(--teal,#3fa39e);color:var(--cream,#f3e7cf)}.cs-quiet-cta__grid{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:32px;align-items:end}.cs-quiet-cta h2{margin:0;font-family:var(--font-display,var(--font-heading));font-size:clamp(36px,5vw,70px);font-weight:400;line-height:.96;text-transform:uppercase;color:var(--cream,#f3e7cf)}.cs-quiet-cta p{max-width:720px;margin:20px 0 0;font-size:clamp(18px,1.35vw,22px);color:rgba(243,231,207,.84);line-height:1.62}
@media(max-width:980px){.cs-sub-hero__grid,.cs-split,.cs-quiet-cta__grid{grid-template-columns:1fr}.cs-info-grid,.cs-compare-grid{grid-template-columns:1fr}.cs-ticket{grid-template-columns:1fr}.cs-ticket__link{white-space:normal}}@media(max-width:680px){.cs-sub-hero{padding:34px 16px 44px!important}.cs-subpage-section{padding-left:20px;padding-right:20px}.cs-sub-hero__facts{grid-template-columns:1fr}.cs-rental__row{grid-template-columns:1fr}.cs-rental__head{display:none}.cs-rental__cell:first-child{grid-column:1/-1;background:rgba(20,20,20,.04)}.cs-rental__cell:not(:first-child){display:flex;justify-content:space-between;gap:12px}.cs-rental__cell:nth-child(2)::before{content:"1 Stunde"}.cs-rental__cell:nth-child(3)::before{content:"2 Stunden"}.cs-rental__cell:nth-child(4)::before{content:"Tageskarte"}.cs-rental__cell:not(:first-child)::before{font-family:var(--font-mono,ui-monospace,monospace);font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:rgba(20,20,20,.56)}}
/* </cablesport-subpage-modules> */

/* <pivot-styleguide-generated> */
body.page-id-387 #cs-site-header,body.page-id-387 #brx-footer{display:none!important}
.sg-shell{background:var(--paper,#fbf6ec);color:var(--ink,#141414);font-family:var(--font-body,Space Grotesk,Arial,sans-serif)}
.sg-hero{position:relative;overflow:hidden;min-height:72vh;padding:64px 56px;background:var(--ink,#141414);color:var(--cream,#f3e7cf);display:grid;align-items:end}
.sg-hero::before{content:"";position:absolute;inset:0;background:url("images/pivot-home/lakeSunset.jpg") center/cover no-repeat;filter:saturate(1.05) contrast(1.02);opacity:.78}
.sg-hero::after{content:"";position:absolute;inset:0;background:radial-gradient(ellipse at 18% 88%,rgba(20,12,4,.88),rgba(20,12,4,.54) 38%,rgba(20,12,4,0) 70%),linear-gradient(90deg,rgba(20,20,20,.72),rgba(20,20,20,.18));pointer-events:none}
.sg-hero > *{position:relative;z-index:1}.sg-hero__meta{display:flex;flex-wrap:wrap;gap:14px;justify-content:space-between;margin-bottom:80px;font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;line-height:1.45;letter-spacing:.22em;text-transform:uppercase;font-weight:700;color:rgba(243,231,207,.76)}
.sg-kicker{font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;line-height:1.45;letter-spacing:.22em;text-transform:uppercase;font-weight:700;color:var(--orange,#f26a1f);margin-bottom:18px}.sg-title{font-family:var(--font-display,Sugra,serif);font-weight:400;font-size:clamp(58px,11vw,164px);line-height:.92;letter-spacing:-.02em;text-transform:lowercase;max-width:9ch;margin:0;color:var(--cream,#f3e7cf)}
.sg-hero__bottom{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr);gap:48px;align-items:end}.sg-hero-copy{max-width:62ch;margin:24px 0 0;font-size:16px;line-height:1.65;color:rgba(243,231,207,.86)}
.sg-nav{position:sticky;top:0;z-index:40;display:flex;gap:12px;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:14px 56px;background:var(--paper,#fbf6ec);border-bottom:1px solid rgba(20,20,20,.1)}
.sg-nav__brand{display:flex;align-items:center;gap:14px;font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;letter-spacing:.22em;text-transform:uppercase;font-weight:700;color:var(--ink,#141414);text-decoration:none}.sg-nav__brand::before{content:"";width:28px;height:18px;flex:0 0 auto;background:url("images/pivot-home/logoDark.png") center/contain no-repeat}.sg-nav__brand img{display:none!important}.sg-nav__links{display:flex;gap:4px;flex-wrap:wrap;align-items:center}.sg-nav__links a{font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;letter-spacing:.18em;text-transform:uppercase;font-weight:700;padding:9px 10px;color:var(--ink,#141414);text-decoration:none}.sg-nav__links a:hover{color:var(--orange,#f26a1f)}
.sg-section{padding:86px 56px;border-top:1px solid rgba(20,20,20,.08)}.sg-section--cream{background:var(--cream,#f3e7cf)}.sg-section--ink{background:var(--ink,#141414);color:var(--cream,#f3e7cf)}.sg-section--orange{background:var(--orange,#f26a1f);color:var(--ink,#141414)}
.sg-wrap{max-width:1320px;margin:0 auto}.sg-head{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(280px,.95fr);gap:48px;align-items:end;margin-bottom:38px}.sg-head h2{font-family:var(--font-display,Sugra,serif);font-weight:400;font-size:clamp(44px,7vw,108px);line-height:.94;letter-spacing:-.02em;text-transform:uppercase;margin:0;color:inherit}.sg-head p{font-size:15.5px;line-height:1.65;color:#3a3a3a;max-width:50ch;margin:0}.sg-section--ink .sg-head p,.sg-section--ink .sg-note,.sg-section--ink .sg-panel p{color:rgba(243,231,207,.78)}
.sg-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.sg-grid--two{grid-template-columns:repeat(2,minmax(0,1fr))}.sg-panel{border:1px solid rgba(20,20,20,.1);background:var(--paper,#fbf6ec);padding:24px;min-height:180px;position:relative;overflow:hidden}.sg-section--ink .sg-panel{background:#1c1c1c;border-color:rgba(243,231,207,.14)}.sg-panel h3{font-family:var(--font-head,serif);font-size:28px;line-height:1.1;margin:0 0 14px;color:inherit}.sg-panel p{font-size:14.5px;line-height:1.6;color:#3a3a3a;margin:0;max-width:46ch}
.sg-note,.sg-code{font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;line-height:1.55;letter-spacing:.08em;text-transform:uppercase;font-weight:700;color:rgba(20,20,20,.64)}.sg-section--ink .sg-code{background:rgba(243,231,207,.12);color:var(--cream,#f3e7cf)}.sg-code{display:inline-block;padding:7px 10px;border-radius:999px;background:rgba(20,20,20,.06);color:inherit;text-transform:none;letter-spacing:.02em;white-space:nowrap}
.sg-token-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:10px}.sg-token{min-height:154px;border:1px solid rgba(20,20,20,.12);padding:16px;display:flex;flex-direction:column;justify-content:space-between;font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;line-height:1.45;letter-spacing:.12em;text-transform:uppercase;font-weight:700}.sg-role-row{display:grid;grid-template-columns:160px 1fr;gap:16px;padding:14px 0;border-bottom:1px solid rgba(20,20,20,.12);font-size:14.5px;line-height:1.6;color:#3a3a3a}.sg-role-row strong{font-family:var(--font-mono);font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:var(--ink)}
.sg-type-specimen{display:grid;gap:22px}.sg-type-line{border-bottom:1px solid rgba(20,20,20,.12);padding-bottom:18px}.sg-display{font-family:var(--font-display,Sugra,serif);font-weight:400;font-size:clamp(54px,8vw,118px);line-height:.92;text-transform:lowercase;letter-spacing:-.02em}.sg-editorial{font-family:var(--font-head,serif);font-size:clamp(32px,5vw,76px);line-height:1.02;font-weight:900;letter-spacing:-.02em}.sg-body-copy{font-size:18px;line-height:1.6;max-width:54ch;color:#3a3a3a}.sg-mono-demo{font-family:var(--font-mono);font-size:12px;line-height:1.55;letter-spacing:.22em;text-transform:uppercase;font-weight:700;color:#3a3a3a}
.sg-button-board{display:flex;flex-wrap:wrap;gap:12px;align-items:center;padding:24px;background:var(--cream,#f3e7cf);border:1px solid rgba(20,20,20,.08)}.sg-button-board--dark{background:var(--ink,#141414);color:var(--cream,#f3e7cf)}.sg-chip-board{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-top:16px}
.sg-cutout-demo{font-family:var(--font-display,Sugra,serif);font-weight:400;font-size:clamp(54px,10vw,132px);line-height:.92;text-transform:uppercase;letter-spacing:-.02em}.sg-cutout-row{display:block}.sg-mini-photo{aspect-ratio:4/3;min-height:220px}.sg-crop-grid{display:grid;grid-template-columns:1.35fr .8fr .8fr;gap:14px}.sg-crop-grid .sg-mini-photo:first-child{aspect-ratio:16/9;grid-row:span 2}.sg-crop-grid .sg-mini-photo{min-height:0}.cs-pivot-ph .cs-pivot-ph-note{font-size:12px}
.sg-spacing-scale{display:grid;gap:12px}.sg-space{display:grid;grid-template-columns:120px 1fr;gap:16px;align-items:center;font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;letter-spacing:.1em;text-transform:uppercase;font-weight:700}.sg-space span:last-child{height:20px;background:var(--orange,#f26a1f)}.sg-layout-demo{display:grid;grid-template-columns:1.4fr .8fr;gap:14px;min-height:260px}.sg-layout-demo > div{padding:22px;background:rgba(20,20,20,.06);border:1px dashed rgba(20,20,20,.22)}
.sg-do-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.sg-rule{padding:24px;border:1px solid rgba(20,20,20,.1);background:var(--paper,#fbf6ec);color:var(--ink)}.sg-rule--do{border-top:8px solid var(--teal,#3fa39e)}.sg-rule--dont{border-top:8px solid var(--orange,#f26a1f)}.sg-rule ul{margin:14px 0 0;padding-left:18px;font-size:14.5px;line-height:1.65;color:#3a3a3a}.sg-footer-note{margin-top:28px}
@media(max-width:1060px){.sg-hero__bottom,.sg-head,.sg-grid,.sg-grid--two,.sg-token-grid,.sg-crop-grid,.sg-layout-demo,.sg-do-grid{grid-template-columns:1fr}.sg-token{min-height:120px}.sg-crop-grid .sg-mini-photo:first-child{grid-row:auto}.sg-nav__links{display:none}}
@media(max-width:960px){.sg-nav,.sg-section,.sg-hero{padding-left:32px;padding-right:32px}}
@media(max-width:640px){.sg-nav,.sg-section,.sg-hero{padding-left:20px;padding-right:20px}.sg-section{padding-top:58px;padding-bottom:58px}.sg-space,.sg-role-row{grid-template-columns:1fr;gap:6px}.sg-button-board{padding:18px}.sg-title{font-size:clamp(54px,18vw,94px)}}
/* </pivot-styleguide-generated> */

/* Header v2 override from project/html/templates/header.html (2026-05-28). */
.cs-site-header { position: fixed; inset: 0 0 auto 0; z-index: var(--z-modal, 1000); width: 100%; color: var(--secondary, #073345); background: var(--white, #fff); box-shadow: 0 10px 26px rgba(7, 51, 69, 0.10); pointer-events: auto; }
.cs-site-header__bar { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; width: 100%; min-height: 112px; margin: 0; padding: 18px clamp(18px, 4vw, 54px) 16px; background: var(--white, #fff); border: 0; border-radius: 0; box-shadow: none; backdrop-filter: none; pointer-events: auto; }
.cs-site-header.is-scrolled .cs-site-header__bar, .cs-site-header.is-menu-open .cs-site-header__bar { min-height: 112px; margin-top: 0; background: var(--white, #fff); border-color: transparent; box-shadow: none; }
.cs-site-header__burger { justify-self: end; grid-column: 3; grid-row: 1; display: inline-flex; align-items: center; gap: 12px; min-height: 40px; padding: 10px 0; color: var(--secondary, #073345); background: transparent; border: 0; cursor: pointer; }
.cs-site-header.is-menu-open .cs-site-header__burger { color: var(--secondary, #073345); }
.cs-site-header__burger-icon { display: inline-flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; width: 28px; height: 18px; background: transparent; border-radius: 0; }
.cs-site-header__burger-icon p { display: contents; }
.cs-site-header__burger-icon br { display: none; }
.cs-site-header__burger-line { display: block; width: 25px; height: 2px; margin-right: 0; background: currentColor; border-radius: 999px; transform-origin: center; transition: transform var(--transition-base, .28s ease), opacity var(--transition-base, .28s ease), width var(--transition-base, .28s ease); }
.cs-site-header__burger-line:nth-child(2) { width: 25px; }
.cs-site-header__burger-line:nth-child(3) { width: 16px; }
.cs-site-header__burger:hover .cs-site-header__burger-line:nth-child(3) { width: 16px; }
.cs-site-header.is-menu-open .cs-site-header__burger-line:nth-child(1) { width: 25px; transform: translateY(7px) rotate(45deg); }
.cs-site-header.is-menu-open .cs-site-header__burger-line:nth-child(2) { opacity: 0; transform: none; }
.cs-site-header.is-menu-open .cs-site-header__burger-line:nth-child(3) { width: 25px; transform: translateY(-7px) rotate(-45deg); }
.cs-site-header__burger-label { display: inline; font-size: 0.82rem; font-weight: 700; line-height: 1; letter-spacing: 0.08em; text-transform: uppercase; }
.cs-site-header.is-menu-open .cs-site-header__burger-label { font-size: 0.82rem; }
.cs-site-header.is-menu-open .cs-site-header__burger-label::after { content: none; }
.cs-site-header__logo-link, .cs-site-header__logo-link:hover { justify-self: center; grid-column: 2; grid-row: 1; display: inline-flex; align-items: center; justify-content: center; color: var(--secondary, #073345); text-decoration: none; }
.cs-site-header__logo, .cs-site-header.is-menu-open .cs-site-header__logo { display: block; width: clamp(138px, 14vw, 206px); height: auto; filter: none; }
.cs-site-header__actions { justify-self: start; grid-column: 1; grid-row: 1; display: inline-flex; align-items: center; justify-content: flex-start; gap: 18px; }
.cs-site-header__quick, .cs-site-header__booking { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; color: var(--secondary, #073345); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; white-space: nowrap; }
.cs-site-header__booking { padding: 0 18px; color: var(--white, #fff); background: var(--pink, #e6007e); border-radius: 999px; }
.cs-menu-panel { position: fixed; inset: 0; z-index: -1; display: block; width: 100%; min-height: 100vh; padding-top: 128px; color: var(--secondary, #073345); background: var(--white, #fff); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px); transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease; }
.cs-site-header.is-menu-open .cs-menu-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.cs-menu-panel__inner { display: flex; align-items: center; justify-content: center; width: min(100%, 1180px); min-height: calc(100vh - 128px); margin: 0 auto; padding: clamp(28px, 5vw, 70px) clamp(24px, 7vw, 96px); }
.cs-menu-panel__nav { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(12px, 2.2vh, 24px); margin: 0; padding: 0; list-style: none; text-align: center; }
.cs-menu-panel__nav a, .cs-menu-panel__nav .brxe-text-link { color: var(--secondary, #073345); font-size: clamp(1.35rem, 3.2vw, 3.1rem); font-weight: 700; line-height: 0.95; text-decoration: none; text-transform: uppercase; letter-spacing: -0.03em; }
.cs-menu-panel__nav a:hover, .cs-menu-panel__nav .brxe-text-link:hover { color: var(--primary, #009ddf); }
.cs-menu-panel__nav .is-highlight, .cs-menu-panel__nav .is-highlight a, .cs-menu-panel__nav .is-highlight.brxe-text-link { color: var(--pink, #e6007e); }
.cs-header-wave, .cs-site-header .cs-header-wave, .cs-site-header > .brxe-svg:last-child { display: block; width: 100%; height: 14px; color: var(--white, #fff); background: transparent; filter: drop-shadow(0 8px 10px rgba(7, 51, 69, 0.08)); }
body.cs-menu-is-open { overflow: hidden; }
@media (max-width: 860px) { .cs-site-header__bar, .cs-site-header.is-scrolled .cs-site-header__bar, .cs-site-header.is-menu-open .cs-site-header__bar { min-height: 84px; padding-top: 12px; padding-bottom: 10px; } .cs-site-header__quick, .cs-site-header__booking { display: none; } .cs-site-header__logo { width: clamp(112px, 32vw, 148px); } .cs-site-header__burger-label { font-size: 0.76rem; } .cs-menu-panel { padding-top: 98px; } .cs-menu-panel__inner { min-height: calc(100vh - 98px); } .cs-menu-panel__nav a, .cs-menu-panel__nav .brxe-text-link { font-size: clamp(1.25rem, 7vw, 2.35rem); } }

/* Pivot Header mobile menu (WP header template). */
.cs-pivot-header{position:sticky;top:0;z-index:80;background:var(--paper,#fbf6ec)}
.cs-pivot-header .cs-pivot-nav{position:relative;top:auto;z-index:82;flex-wrap:nowrap}
.cs-pivot-menu-toggle{display:none;align-items:center;gap:10px;width:auto;margin-left:8px;padding:10px 0;background:transparent;border:0;color:var(--ink,#141414);font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;cursor:pointer}
.cs-pivot-menu-toggle__icon{display:inline-flex;flex-direction:column;gap:6px;width:24px}
.cs-pivot-menu-toggle__icon p{display:contents}.cs-pivot-menu-toggle__icon br{display:none}
.cs-pivot-menu-toggle__icon span{display:block;width:24px;height:2px;background:currentColor;border-radius:999px;transition:transform .25s ease,opacity .25s ease}
.cs-pivot-header.is-menu-open .cs-pivot-menu-toggle__icon span:first-child{transform:translateY(4px) rotate(45deg)}
.cs-pivot-header.is-menu-open .cs-pivot-menu-toggle__icon span:last-child{transform:translateY(-4px) rotate(-45deg)}
.cs-pivot-mobile-panel{position:fixed;inset:0;z-index:81;display:block;padding:96px 24px 28px;background:var(--paper,#fbf6ec);opacity:0;visibility:hidden;pointer-events:none;overflow-y:auto;-webkit-overflow-scrolling:touch;transform:translateY(-10px);transition:opacity .24s ease,visibility .24s ease,transform .24s ease}
.cs-pivot-header.is-menu-open .cs-pivot-mobile-panel{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)}
.cs-pivot-mobile-panel__inner{display:flex;min-height:calc(100vh - 124px);flex-direction:column;justify-content:flex-start;align-items:stretch;gap:10px;max-width:680px;margin:0 auto;padding-bottom:28px}
.cs-pivot-mobile-panel__inner a{color:var(--ink,#141414);text-decoration:none}
.cs-pivot-mobile-panel__inner a:hover{color:var(--orange,#f26a1f)}
.cs-pivot-mobile-primary{display:grid;gap:6px;padding-bottom:8px;border-bottom:1px solid rgba(20,20,20,.16)}
.cs-pivot-mobile-primary a{font-family:var(--font-display,var(--font-heading));font-size:clamp(34px,10vw,56px);font-weight:400;line-height:.95;letter-spacing:-.02em;text-transform:uppercase;color:var(--ink,#141414)}
.cs-pivot-mobile-primary a:nth-child(1),.cs-pivot-mobile-primary a:nth-child(2){color:var(--orange,#f26a1f)}
.cs-pivot-mobile-group{border-bottom:1px solid rgba(20,20,20,.12);padding:0 0 8px}
.cs-pivot-mobile-group summary{display:flex;align-items:center;justify-content:space-between;gap:18px;list-style:none;cursor:pointer;font-family:var(--font-display,var(--font-heading));font-size:clamp(32px,9vw,54px);font-weight:400;line-height:.95;letter-spacing:-.02em;text-transform:uppercase;color:var(--ink,#141414);padding:8px 0}
.cs-pivot-mobile-group summary::-webkit-details-marker{display:none}
.cs-pivot-mobile-group summary::after{content:"+";font-family:var(--font-mono,ui-monospace,monospace);font-size:22px;font-weight:700;line-height:1;color:var(--orange,#f26a1f)}
.cs-pivot-mobile-group[open] summary::after{content:"–"}
.cs-pivot-mobile-subnav{display:grid;gap:6px;padding:2px 0 12px 2px}
.cs-pivot-mobile-subnav a{font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:800;letter-spacing:.14em;line-height:1.25;text-transform:uppercase;padding:9px 0;color:rgba(20,20,20,.76)}
.cs-pivot-mobile-panel__inner .cs-pivot-mobile-panel__cta{justify-content:center;margin-top:10px;padding:13px 16px;border-radius:999px;background:var(--ink,#141414);color:var(--yellow,#ffd60a);font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:700;letter-spacing:.16em;line-height:1;text-transform:uppercase;text-align:center}
@media(max-width:1120px){.cs-pivot-menu-toggle{display:inline-flex}.cs-pivot-header .cs-pivot-nav-right{gap:10px}.cs-pivot-header .cs-pivot-nav-right .cs-pivot-nav-links{display:none}}
@media(max-width:640px){.cs-pivot-header .cs-pivot-nav-right>.cs-pivot-btn{display:none}.cs-pivot-menu-toggle__label{display:none}.cs-pivot-mobile-panel{padding:76px 18px 22px}.cs-pivot-mobile-panel__inner{gap:8px}.cs-pivot-mobile-subnav a{font-size:11px}.cs-pivot-mobile-panel__inner .cs-pivot-mobile-panel__cta{display:block}}

/* Unterseiten-Migration 2026: Bricks mobile hardening */
.cs-sub-hero__photo .brxe-image,.cs-sub-hero__photo figure,.cs-sub-hero__photo picture,.cs-sub-hero__photo img,.cs-map-split__media .brxe-image,.cs-map-split__media figure,.cs-map-split__media picture,.cs-map-split__media img,.cs-arrival-gallery__item .brxe-image,.cs-arrival-gallery__item figure,.cs-arrival-gallery__item picture,.cs-arrival-gallery__item img,.cs-strand-gallery__item .brxe-image,.cs-strand-gallery__item figure,.cs-strand-gallery__item picture,.cs-strand-gallery__item img,.cs-event-card__image .brxe-image,.cs-event-card__image figure,.cs-event-card__image picture,.cs-event-card__image img,.cs-air-link-card__image .brxe-image,.cs-air-link-card__image figure,.cs-air-link-card__image picture,.cs-air-link-card__image img,.cs-air-gallery__item .brxe-image,.cs-air-gallery__item figure,.cs-air-gallery__item picture,.cs-air-gallery__item img,.cs-voucher-shop__media .brxe-image,.cs-voucher-shop__media figure,.cs-voucher-shop__media picture,.cs-voucher-shop__media img,.cs-voucher-gallery__item .brxe-image,.cs-voucher-gallery__item figure,.cs-voucher-gallery__item picture,.cs-voucher-gallery__item img,.cs-event-split__media .brxe-image,.cs-event-split__media figure,.cs-event-split__media picture,.cs-event-split__media img,.cs-event-gallery__item .brxe-image,.cs-event-gallery__item figure,.cs-event-gallery__item picture,.cs-event-gallery__item img{width:100%!important;height:100%!important;display:block!important;object-fit:cover!important}
@media(max-width:980px){.cs-hours-alert,.cs-hours-card__top,.cs-arrival-grid,.cs-map-split,.cs-strand-menu-card,.cs-learn-note,.cs-flow-grid,.cs-event-card-grid,.cs-event-process,.cs-air-link-grid,.cs-voucher-shop,.cs-faq-grid,.cs-event-split,.cs-event-gallery,.cs-voucher-gallery__grid,.cs-faq-layout,.cs-legal__shell,.cs-legal-shell__grid{grid-template-columns:1fr!important}.cs-hours-note-grid{grid-template-columns:1fr!important}.cs-arrival-gallery,.cs-strand-gallery,.cs-air-gallery{grid-template-columns:1fr 1fr!important}.cs-hours-card__season{justify-self:start!important}.cs-legal__aside,.cs-faq-aside,.cs-legal-toc{position:relative!important;top:auto!important}}
@media(max-width:680px){.cs-sub-hero{padding:34px 16px 44px!important}.cs-sub-hero__content{display:block!important}.cs-sub-hero__photo{position:relative!important}.cs-sub-hero__grid,.cs-sub-hero__visual,.cs-sub-hero__facts{grid-template-columns:1fr!important}.cs-subpage-section{padding:58px 12px!important}.cs-split__panel{padding-left:20px!important;padding-right:20px!important}.cs-check-list{grid-template-columns:1fr!important}.cs-hours-alert{padding:18px 16px!important;border-radius:16px!important}.cs-hours-card__top{padding:22px 14px!important}.cs-hours-card__body{padding:0 14px 14px!important}.cs-hours-line{grid-template-columns:1fr!important;gap:8px!important;padding:15px 0!important}.cs-hours-line__time{min-height:0!important;padding:0!important;border-radius:0!important;background:transparent!important}.cs-arrival-card,.cs-strand-menu-card,.cs-event-step,.cs-faq-card,.cs-event-note{padding:18px 16px!important;border-radius:16px!important}.cs-event-note{border-left:5px solid var(--orange,#f26a1f)!important}.cs-route-card{grid-template-columns:1fr!important;gap:12px!important;padding:18px!important}.cs-map-split__media,.cs-event-split__media,.cs-voucher-shop__media{min-height:320px!important}.cs-map-split__panel,.cs-event-split__panel,.cs-voucher-shop__panel{padding:26px 20px!important}.cs-arrival-gallery,.cs-strand-gallery,.cs-air-gallery,.cs-voucher-gallery__grid{grid-template-columns:1fr!important}.cs-air-link-card{grid-template-rows:210px 1fr!important}.cs-gallery-impressions{padding:64px 16px 64px!important}.cs-gallery-impressions__eyebrow{display:inline-flex!important;margin-bottom:18px!important}.cs-gallery-impressions__title{margin-bottom:0!important}.cs-gallery-impressions__intro{margin-bottom:38px!important}.cs-gallery-impressions__grid{grid-template-columns:1fr!important}.cs-event-card-grid{margin-top:36px!important}.cs-event-list__item{grid-template-columns:22px 1fr!important}.cs-legal-hero{padding:92px 20px 36px!important}.cs-legal-shell.cs-subpage-section,.cs-legal{padding:48px 16px 54px!important}.cs-legal__section{margin-top:0!important;margin-bottom:26px!important;padding:0 0 26px!important}.cs-legal__heading{margin-bottom:16px!important}.cs-legal__subheading{margin-top:0!important;margin-bottom:12px!important}.cs-legal__lead{margin-bottom:14px!important}.cs-legal__inner{padding-left:0!important;padding-right:0!important}.cs-legal__shell,.cs-legal-shell__grid{grid-template-columns:1fr!important}.cs-legal-shell__grid{width:358px!important;max-width:100%!important;grid-template-columns:358px!important}.cs-legal-article{padding:24px 16px!important}}

/* Ereignisse CPT archive + single templates (JetEngine dynamic text). */
.cs-event-archive__hero{padding-top:86px}
.cs-event-archive__list{background:var(--cream,#f3e7cf)}
.cs-event-archive__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:40px;align-items:stretch}
.cs-event-archive-card{display:grid;grid-template-rows:260px 1fr;overflow:hidden;border-radius:22px;background:rgba(251,246,236,.86);border:1px solid rgba(20,20,20,.08);box-shadow:0 14px 38px rgba(20,20,20,.065);color:inherit;text-decoration:none}
.cs-event-archive-card__image{overflow:hidden;background:rgba(20,20,20,.08)}
.cs-event-archive-card__image .brxe-image,.cs-event-archive-card__image figure,.cs-event-archive-card__image picture,.cs-event-archive-card__image img,.cs-event-detail__hero-media .brxe-image,.cs-event-detail__hero-media figure,.cs-event-detail__hero-media picture,.cs-event-detail__hero-media img{width:100%!important;height:100%!important;display:block!important;object-fit:cover!important}
.cs-event-archive-card__body{display:flex;flex-direction:column;min-height:0;padding:26px}
.cs-event-archive-card__meta,.cs-event-detail__meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:18px}
.cs-event-archive-card__meta span,.cs-event-detail__meta span{display:inline-flex;align-items:center;min-height:28px;padding:7px 10px;border-radius:999px;background:rgba(242,106,31,.1);color:var(--orange,#f26a1f);font-family:var(--font-mono,ui-monospace,monospace);font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.cs-event-archive-card__title{margin:0;font-family:var(--font-display,var(--font-heading));font-size:clamp(28px,2.8vw,38px);font-weight:400;line-height:1;color:var(--ink,#141414)}
.cs-event-archive-card__text{margin:16px 0 0;font-size:17px;line-height:1.58;color:rgba(20,20,20,.68)}
.cs-event-archive-card__link{display:inline-flex;margin-top:auto;padding-top:24px;font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--orange,#f26a1f);text-decoration:none}
.cs-event-archive__cta,.cs-event-detail__next{background:var(--teal,#3fa39e);color:var(--cream,#f3e7cf)}
.cs-event-archive__cta .cs-subpage-label,.cs-event-detail__next .cs-subpage-label{color:var(--yellow,#ffd60a)}
.cs-event-archive__cta h2,.cs-event-detail__next h2{margin:0;font-family:var(--font-display,var(--font-heading));font-size:clamp(36px,5vw,70px);font-weight:400;line-height:.96;text-transform:uppercase;color:var(--cream,#f3e7cf)}
.cs-event-archive__cta p,.cs-event-detail__next p{max-width:720px;margin:20px 0 0;font-size:clamp(18px,1.35vw,22px);color:rgba(243,231,207,.84);line-height:1.62}
.cs-event-detail__hero{padding:96px 28px 70px;background:linear-gradient(180deg,#fff4dc 0%,var(--cream,#f3e7cf) 100%)}
.cs-event-detail__hero-grid{max-width:1220px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1fr) minmax(340px,.78fr);gap:clamp(34px,6vw,76px);align-items:stretch}
.cs-event-detail__hero-content{min-width:0;align-self:center}
.cs-event-detail__back{display:inline-flex;margin-bottom:22px;font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:rgba(20,20,20,.62);text-decoration:none}
.cs-event-detail__title{margin:0;font-family:var(--font-display,var(--font-heading));font-size:clamp(42px,6vw,82px);font-weight:400;line-height:.92;letter-spacing:-.02em;text-transform:uppercase;color:var(--ink,#141414)}
.cs-event-detail__lead{max-width:720px;margin:24px 0 0;font-size:clamp(18px,1.55vw,24px);line-height:1.48;color:rgba(20,20,20,.74)}
.cs-event-detail__meta{margin:28px 0 0}
.cs-event-detail__hero-media{min-height:480px;overflow:hidden;border-radius:24px;background:rgba(20,20,20,.08);box-shadow:0 18px 60px rgba(20,20,20,.13)}
.cs-event-detail__body-grid{max-width:1220px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:clamp(32px,5vw,64px);align-items:start}
.cs-event-detail__article{min-width:0}
.cs-event-detail__content{margin-top:30px;font-size:18px;line-height:1.74;color:rgba(20,20,20,.75)}
.cs-event-detail__content p{margin:0 0 1.2em}.cs-event-detail__content a{color:var(--orange,#f26a1f);font-weight:800;text-decoration:none}.cs-event-detail__content h2,.cs-event-detail__content h3{margin:1.4em 0 .5em;font-family:var(--font-display,var(--font-heading));font-weight:400;line-height:1;color:var(--ink,#141414)}
.cs-event-detail__aside{position:sticky;top:108px;padding:28px;border-radius:22px;background:rgba(251,246,236,.86);border:1px solid rgba(20,20,20,.08);box-shadow:0 14px 38px rgba(20,20,20,.055)}
.cs-event-detail__aside-kicker{display:block;margin-bottom:8px;font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--orange,#f26a1f)}
.cs-event-detail__fact{display:grid;gap:4px;padding:18px 0;border-top:1px solid rgba(20,20,20,.08)}
.cs-event-detail__fact span{font-family:var(--font-mono,ui-monospace,monospace);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:rgba(20,20,20,.54)}
.cs-event-detail__fact strong{font-family:var(--font-display,var(--font-heading));font-size:26px;font-weight:400;line-height:1.05;color:var(--ink,#141414)}
.cs-event-detail__aside-link{display:inline-flex;margin-top:16px;font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--orange,#f26a1f);text-decoration:none}
@media(max-width:980px){.cs-event-archive__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cs-event-detail__hero-grid,.cs-event-detail__body-grid{grid-template-columns:1fr}.cs-event-detail__aside{position:relative;top:auto}.cs-event-detail__hero-media{min-height:360px}}
@media(max-width:680px){.cs-event-archive__grid{grid-template-columns:1fr}.cs-event-archive-card{grid-template-rows:220px 1fr}.cs-event-detail__hero{padding:82px 16px 52px}.cs-event-detail__hero-media{min-height:300px;border-radius:18px}.cs-event-detail__body-grid{gap:28px}.cs-event-detail__aside{padding:22px}}
.cs-event-detail__inquiry{background:rgba(251,246,236,.58)}
.cs-event-detail__inquiry-grid{max-width:1220px;margin:0 auto;display:grid;grid-template-columns:minmax(0,.86fr) minmax(360px,1fr);gap:clamp(32px,5vw,64px);align-items:start}
.cs-event-detail__inquiry-copy p{max-width:650px;margin:24px 0 0;font-size:18px;line-height:1.64;color:rgba(20,20,20,.72)}
.cs-event-detail__form-note{font-family:var(--font-mono,ui-monospace,monospace);font-size:13px!important;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:rgba(20,20,20,.58)!important}
.cs-event-detail__form-note a{color:var(--orange,#f26a1f);text-decoration:none}
.cs-event-detail__inquiry-card{padding:clamp(24px,4vw,34px);border-radius:24px;background:var(--teal,#3fa39e);box-shadow:0 18px 55px rgba(20,20,20,.12);color:var(--cream,#f3e7cf)}
.cs-event-detail__inquiry-form{display:flex;flex-wrap:wrap;gap:14px;align-items:flex-start}
.cs-event-detail__inquiry-form .form-group{width:calc(50% - 7px);margin:0}.cs-event-detail__inquiry-form .form-group:has(textarea),.cs-event-detail__inquiry-form .form-group:has(input[type=hidden]){width:100%}
.cs-event-detail__inquiry-form label{display:block;width:100%;margin:4px 0 -6px;font-family:var(--font-mono,ui-monospace,monospace);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:rgba(243,231,207,.78)}
.cs-event-detail__inquiry-form input,.cs-event-detail__inquiry-form textarea{width:100%;border:1px solid rgba(243,231,207,.28);border-radius:14px;background:rgba(251,246,236,.95);padding:15px 16px;font:inherit;color:var(--ink,#141414);outline:none}
.cs-event-detail__inquiry-form textarea{min-height:142px;resize:vertical}
.cs-event-detail__inquiry-form input:focus,.cs-event-detail__inquiry-form textarea:focus{border-color:var(--yellow,#ffd60a);box-shadow:0 0 0 3px rgba(255,214,10,.22)}
.cs-event-detail__inquiry-form button,.cs-event-detail__inquiry-form .bricks-button{width:100%;justify-content:center;border:0;border-radius:999px;background:var(--yellow,#ffd60a);padding:15px 22px;font-family:var(--font-mono,ui-monospace,monospace);font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:var(--ink,#141414);cursor:pointer}
.cs-event-detail__inquiry-form .message{width:100%;color:var(--cream,#f3e7cf)}
@media(max-width:980px){.cs-event-detail__inquiry-grid{grid-template-columns:1fr}.cs-event-detail__inquiry-card{max-width:760px}}
@media(max-width:680px){.cs-event-detail__inquiry{padding-left:16px;padding-right:16px}.cs-event-detail__inquiry-form .form-group{width:100%}.cs-event-detail__inquiry-card{padding:22px;border-radius:18px}}
.cs-event-detail__content .cs-event-info-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin:30px 0}
.cs-event-detail__content .cs-event-info-card{padding:20px;border-radius:18px;background:rgba(251,246,236,.78);border:1px solid rgba(20,20,20,.08)}
.cs-event-detail__content .cs-event-info-card strong{display:block;margin-bottom:8px;font-family:var(--font-mono,ui-monospace,monospace);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--orange,#f26a1f)}
.cs-event-detail__content .cs-event-info-card span{display:block;font-size:17px;line-height:1.5;color:rgba(20,20,20,.74)}
.cs-event-detail__content .cs-event-lineup{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin:28px 0}
.cs-event-detail__content .cs-event-lineup-card{padding:22px;border-radius:18px;background:rgba(242,106,31,.08);border:1px solid rgba(242,106,31,.16)}
.cs-event-detail__content .cs-event-lineup-card h3{margin:0 0 12px!important;font-size:28px!important}.cs-event-detail__content .cs-event-lineup-card p{margin:0;color:rgba(20,20,20,.72)}
@media(max-width:980px){.cs-event-detail__content .cs-event-info-grid,.cs-event-detail__content .cs-event-lineup{grid-template-columns:1fr}}
