/*
Theme Name: Cleats Cycle Elementor
Theme URI: https://cleatscycle.co.za/
Author: Cleats Cycle
Description: A lightweight Cleats Cycle theme with an Elementor-editable homepage, boutique styling, header and footer.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: cleats-cycle
*/

:root {
  --ink: #242424;
  --ink-deep: #151515;
  --ink-soft: #68625f;
  --ivory: #f7f4ef;
  --ivory-deep: #eee8e1;
  --white: #fffefd;
  --lavender: #d7acf5;
  --lavender-deep: #b978df;
  --lavender-pale: #f4eafb;
  --lavender-mist: #fbf7fd;
  --line: rgba(36, 36, 36, 0.12);
  --line-strong: rgba(36, 36, 36, 0.22);
  --line-light: rgba(255, 255, 255, 0.18);
  --shell: min(1240px, calc(100vw - 72px));
  --display: "Bauhaus 93", "ITC Bauhaus", "Righteous", sans-serif;
  --body: "Montserrat", Arial, sans-serif;
  --ease: cubic-bezier(.22,.8,.2,1);
  --shadow: 0 34px 90px rgba(32, 26, 23, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-loading,
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--lavender); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 132px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

/* Loading sequence */
.loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background: var(--ivory);
  transition: transform 1s var(--ease), visibility 1s;
}
.loader::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.loader.is-complete {
  transform: translateY(-105%);
  visibility: hidden;
}
.loader__inner {
  width: min(320px, calc(100vw - 64px));
  text-align: center;
}
.loader__inner img {
  width: 72px;
  margin: 0 auto 40px;
  animation: loaderPulse 1.4s ease-in-out infinite alternate;
}
.loader__line {
  height: 1px;
  background: rgba(36,36,36,.16);
  overflow: hidden;
}
.loader__line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lavender-deep);
}
.loader__inner p {
  margin: 12px 0 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
}
@keyframes loaderPulse { to { transform: scale(1.035); opacity: .78; } }

/* Cursor and progress */
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 6000;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, width .25s ease, height .25s ease, background .25s ease, border-color .25s ease;
}
.cursor--dot {
  width: 4px;
  height: 4px;
  background: var(--lavender-deep);
}
.cursor--ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(36,36,36,.26);
}
.cursor.is-visible { opacity: 1; }
.cursor--ring.is-hovering {
  width: 52px;
  height: 52px;
  background: rgba(215,172,245,.13);
  border-color: var(--lavender-deep);
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  width: 100%;
  height: 2px;
  background: var(--lavender-deep);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  transition: color .4s ease, background .4s ease, border-color .4s ease, transform .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247,244,239,.90);
  backdrop-filter: blur(24px) saturate(120%);
  border-color: var(--line);
}
.header__inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  width: 242px;
  filter: brightness(0) invert(1);
  transition: filter .4s ease, opacity .25s ease;
}
.brand:hover img { opacity: .75; }
.site-header.is-scrolled .brand img { filter: none; }
.primary-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.primary-nav a {
  position: relative;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transition: right .3s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { right: 0; }
.header__book {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.header__book svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.site-header.is-scrolled .header__book { border-color: var(--line-strong); }
.header__book:hover {
  color: var(--ink);
  background: var(--lavender);
  border-color: var(--lavender);
}
.menu-toggle {
  display: none;
  border: 0;
  padding: 8px;
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
  transition: transform .25s ease, opacity .25s ease;
}

/* Shared typography */
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}
.eyebrow--light { color: rgba(255,255,255,.76); }
.display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 6.6vw, 7rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.025em;
}
.display em {
  color: var(--lavender-deep);
  font-style: normal;
}
.display--light { color: var(--white); }
.manifesto__index {
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
}
.manifesto__index--light { color: rgba(255,255,255,.55); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}
.hero__media,
.hero__veil,
.hero__grain {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.035);
  transition: transform 2.2s var(--ease);
}
body.is-ready .hero__media img { transform: scale(1); }
.hero__veil {
  background:
    linear-gradient(90deg, rgba(15,14,14,.82) 0%, rgba(15,14,14,.54) 38%, rgba(15,14,14,.20) 70%, rgba(15,14,14,.30) 100%),
    linear-gradient(0deg, rgba(15,14,14,.72) 0%, rgba(15,14,14,0) 48%);
}
.hero__grain {
  opacity: .07;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero__layout {
  position: relative;
  z-index: 2;
  width: var(--shell);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: end;
  padding: 170px 0 70px;
}
.hero__content { max-width: 850px; }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 10.2rem);
  font-weight: 400;
  line-height: .81;
  letter-spacing: -.045em;
}
.hero-line { display: block; overflow: hidden; }
.hero-line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1.15s var(--ease);
}
.hero-line--accent { color: var(--lavender); }
body.is-ready .hero-line > span { transform: translateY(0); }
body.is-ready .hero-line:nth-child(2) > span { transition-delay: .12s; }
.hero__intro {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  font-weight: 300;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}
.button {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background .28s ease, color .28s ease, border-color .28s ease, transform .28s var(--ease);
}
.button span { transition: transform .22s var(--ease); }
.button--lavender { color: var(--ink); background: var(--lavender); }
.button--lavender:hover { background: var(--white); }
.button--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.44);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.button--ghost:hover { background: rgba(255,255,255,.14); }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: var(--lavender-deep); }
.hero__details {
  border-top: 1px solid rgba(255,255,255,.28);
}
.hero__details > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.hero__details span {
  color: var(--lavender);
  font-size: .65rem;
  letter-spacing: .1em;
}
.hero__details p {
  margin: 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s var(--ease);
}
body.is-ready .hero-animate { opacity: 1; transform: translateY(0); }
body.is-ready .hero__intro { transition-delay: .32s; }
body.is-ready .hero__actions { transition-delay: .42s; }
body.is-ready .hero__details { transition-delay: .52s; }
.hero__scroll {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.65);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateY(-100%);
  transform-origin: right bottom;
}
.hero__scroll i {
  display: block;
  width: 54px;
  height: 1px;
  background: rgba(255,255,255,.5);
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: var(--lavender);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 50% { transform: translateX(130%); } }

/* Manifesto */
.manifesto { background: var(--ivory); }
.manifesto__grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 80px;
  align-items: start;
}
.manifesto__label {
  position: sticky;
  top: 132px;
}
.manifesto__copy {
  padding-left: 50px;
  border-left: 1px solid var(--line);
}
.statement {
  margin: 0;
  max-width: 980px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.3vw, 7rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.02em;
}
.statement .word {
  display: inline-block;
  color: rgba(36,36,36,.14);
  transition: color .55s ease;
}
.statement .word.is-active { color: var(--ink); }
.manifesto__copy > p {
  max-width: 620px;
  margin: 42px 0 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Cinematic experience */
.cinema {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.cinema__image,
.cinema__overlay {
  position: absolute;
  inset: 0;
}
.cinema__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cinema__overlay {
  background:
    linear-gradient(0deg, rgba(20,18,18,.83) 0%, rgba(20,18,18,.22) 60%),
    linear-gradient(90deg, rgba(20,18,18,.35), rgba(20,18,18,.05));
}
.cinema__content {
  position: relative;
  z-index: 2;
  padding: 70px 0 74px;
}
.cinema__content h2 {
  max-width: 840px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8.2rem);
  font-weight: 400;
  line-height: .88;
}
.cinema__content > p:not(.eyebrow) {
  max-width: 530px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.76);
  font-weight: 300;
}
.circle-link {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: var(--white);
  transition: color .3s ease, background .3s ease, border-color .3s ease;
}
.circle-link span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
}
.circle-link svg {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.circle-link:hover {
  color: var(--ink);
  background: var(--lavender);
  border-color: var(--lavender);
}

/* Brand ribbon */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  background: var(--lavender);
  color: var(--ink);
}
.marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marquee 27s linear infinite;
}
.marquee__track span {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .03em;
}
.marquee__track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Principles */
.principles { background: var(--white); }
.principles__head {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}
.principles__list { border-top: 1px solid var(--line-strong); }
.principle {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(220px,.8fr) minmax(0,1.2fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: padding .35s var(--ease);
}
.principle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--lavender-pale);
  transform: translateX(-102%);
  transition: transform .45s var(--ease);
}
.principle:hover::before { transform: translateX(0); }
.principle:hover { padding-inline: 22px; }
.principle > * { position: relative; z-index: 1; }
.principle > span {
  color: var(--lavender-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.principle h3 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 600;
}
.principle p {
  margin: 0;
  max-width: 600px;
  color: var(--ink-soft);
  font-weight: 300;
}

/* Editorial gallery */
.editorial-gallery { background: var(--ivory); }
.gallery__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.gallery__lead {
  margin: 0 0 6px;
  max-width: 430px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 300;
  justify-self: end;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.gallery__item { margin: 0; }
.gallery__image {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--ivory-deep);
}
.gallery__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.28);
  pointer-events: none;
}
.gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .9s ease;
}
.gallery__item:hover .gallery__image img {
  transform: scale(1.035);
  filter: contrast(1.02) saturate(.94);
}
.gallery__item figcaption {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 19px 0 0;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.gallery__item figcaption span {
  color: var(--lavender-deep);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.gallery__item figcaption p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 300;
  line-height: 1.65;
}

/* About */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
  gap: 84px;
  align-items: center;
}
.about__portrait {
  position: relative;
  padding: 0 0 38px 38px;
}
.about__portrait::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68%;
  height: 72%;
  background: var(--lavender-pale);
}
.about__portrait > div {
  position: relative;
  z-index: 1;
  height: 690px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about__portrait > p {
  position: relative;
  z-index: 2;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.about__copy { max-width: 650px; }
.about__story {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-weight: 300;
}
.about__story p { margin: 0; }
.about__story p:first-child {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 500;
}
.about__signature {
  margin-top: 35px;
  color: var(--lavender-deep);
  font-family: var(--display);
  font-size: 2.2rem;
}

/* Packages */
.packages {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}
.packages::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -210px;
  top: -250px;
  border-radius: 50%;
  background: rgba(215,172,245,.08);
  filter: blur(2px);
}
.packages__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 56px;
}
.packages__intro {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.62);
  font-weight: 300;
}
.package-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-light);
}
.package-row {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(250px, 1fr) 180px 150px 28px;
  gap: 24px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
  transition: padding .4s var(--ease), color .3s ease;
}
.package-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lavender);
  transform: translateX(-102%);
  transition: transform .45s var(--ease);
}
.package-row:hover::before { transform: translateX(0); }
.package-row:hover {
  color: var(--ink);
  padding-inline: 24px;
}
.package-row > * { position: relative; z-index: 1; }
.package-row__number {
  color: rgba(255,255,255,.42);
  font-size: .68rem;
  letter-spacing: .12em;
}
.package-row:hover .package-row__number { color: rgba(36,36,36,.58); }
.package-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
}
.package-row h3 small {
  display: inline-flex;
  margin-left: 9px;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-family: var(--body);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  vertical-align: middle;
}
.package-row:hover h3 small { border-color: rgba(36,36,36,.24); }
.package-row p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.54);
  font-size: .82rem;
}
.package-row:hover p { color: rgba(36,36,36,.62); }
.package-row__validity {
  color: rgba(255,255,255,.56);
  font-size: .76rem;
  letter-spacing: .04em;
}
.package-row:hover .package-row__validity { color: rgba(36,36,36,.62); }
.package-row strong {
  font-size: 1.1rem;
  text-align: right;
}
.package-row i {
  font-style: normal;
  text-align: right;
}

/* Schedule */
.schedule { background: var(--ivory); }
.schedule__head {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 50px;
}
.schedule__head > div:last-child > p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-weight: 300;
}
.schedule__panel {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(36,36,36,.06);
}
.schedule__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.schedule__bar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.schedule__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lavender-deep);
  box-shadow: 0 0 0 0 rgba(185,120,223,.5);
  animation: schedulePulse 1.8s infinite;
}
@keyframes schedulePulse { 70% { box-shadow: 0 0 0 8px rgba(185,120,223,0); } }
.schedule__placeholder { padding: 30px; }
.schedule__days {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-right: 0;
}
.schedule__days article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: var(--white);
  transition: background .3s ease, color .3s ease;
}
.schedule__days article:hover {
  background: var(--lavender-pale);
}
.schedule__days span {
  color: var(--ink-soft);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.schedule__days strong {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
}
.schedule__days small {
  color: var(--ink-soft);
  font-size: .72rem;
}
.schedule__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
}
.schedule__action p {
  max-width: 630px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
}
.schedule__panel iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
}
code {
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--lavender-pale);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em;
}

/* First ride */
.first-ride {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.first-ride__media,
.first-ride__overlay {
  position: absolute;
  inset: 0;
}
.first-ride__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.first-ride__overlay {
  background:
    linear-gradient(90deg, rgba(20,19,18,.78) 0%, rgba(20,19,18,.42) 46%, rgba(20,19,18,.12) 100%),
    linear-gradient(0deg, rgba(20,19,18,.7), transparent 65%);
}
.first-ride__content {
  position: relative;
  z-index: 2;
  padding: 88px 0 76px;
}
.first-ride__content .display { max-width: 970px; }
.first-ride__steps {
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  margin-top: 46px;
  border-top: 1px solid rgba(255,255,255,.28);
}
.first-ride__steps > div {
  padding: 18px 18px 0 0;
  border-right: 1px solid rgba(255,255,255,.18);
}
.first-ride__steps > div:not(:first-child) { padding-left: 18px; }
.first-ride__steps > div:last-child { border-right: 0; }
.first-ride__steps span {
  color: var(--lavender);
  font-size: .66rem;
  letter-spacing: .12em;
}
.first-ride__steps p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .8rem;
}
.first-ride__steps strong { color: var(--white); font-weight: 600; }

/* FAQ */
.faq { background: var(--white); }
.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px,.75fr) minmax(0,1.25fr);
  gap: 90px;
  align-items: start;
}
.faq__intro {
  position: sticky;
  top: 132px;
}
.faq__intro > p:last-child {
  margin-top: 28px;
  color: var(--ink-soft);
  font-weight: 300;
}
.accordion { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: .96rem;
  font-weight: 600;
  cursor: pointer;
}
.faq-item button span { transition: color .25s ease; }
.faq-item button:hover span { color: var(--lavender-deep); }
.faq-item i {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
}
.faq-item i::before,
.faq-item i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease;
}
.faq-item i::after { transform: rotate(90deg); }
.faq-item.is-open i::after { transform: rotate(0); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq-answer > div { overflow: hidden; }
.faq-answer p {
  max-width: 650px;
  margin: 0;
  padding: 0 46px 24px 0;
  color: var(--ink-soft);
  font-weight: 300;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* Final call to action */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background: var(--lavender);
  color: var(--ink);
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(36,36,36,.18);
  pointer-events: none;
}
.final-cta__glow {
  position: absolute;
  width: 540px;
  height: 540px;
  right: -160px;
  top: -250px;
  border-radius: 50%;
  background: rgba(255,255,255,.26);
  filter: blur(4px);
}
.final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.final-cta__inner .eyebrow { justify-content: center; color: rgba(36,36,36,.62); }
.final-cta h2 {
  margin: 0 auto 36px;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8.5vw, 9rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.03em;
}

/* Footer */
.site-footer {
  padding: 66px 0 28px;
  background: var(--ink-deep);
  color: var(--white);
}
.footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-light);
}
.footer__logo img {
  width: 300px;
  filter: brightness(0) invert(1);
}
.footer__top > p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .86rem;
  line-height: 1.8;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr 1fr;
  gap: 40px;
  padding: 42px 0;
}
.footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__grid span {
  margin-bottom: 16px;
  color: var(--lavender);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer__grid a,
.footer__grid p {
  margin: 0 0 9px;
  color: rgba(255,255,255,.66);
  font-size: .82rem;
}
.footer__grid a:hover { color: var(--white); }
.footer__booking a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.35);
  color: var(--white);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,.45);
  font-size: .72rem;
}
.footer__bottom p { margin: 0; }
.footer__bottom button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.62);
  cursor: pointer;
}
.footer__bottom button:hover { color: var(--lavender); }

/* Reveal animation system */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .85s var(--ease);
}
[data-reveal="up"] { transform: translateY(46px); }
[data-reveal="line"] { transform: translateY(20px); }
[data-reveal="clip"] { transform: translateY(30px); }
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1100px) {
  :root { --shell: min(1240px, calc(100vw - 44px)); }
  .section { padding: 108px 0; }
  .header__inner { grid-template-columns: auto 1fr auto; gap: 24px; }
  .primary-nav { gap: 20px; }
  .brand img { width: 210px; }
  .hero__layout { grid-template-columns: 1fr; }
  .hero__details { max-width: 560px; display: grid; grid-template-columns: repeat(3,1fr); }
  .hero__details > div { grid-template-columns: 1fr; border-right: 1px solid rgba(255,255,255,.18); }
  .hero__details > div:last-child { border-right: 0; }
  .manifesto__grid,
  .principles__head,
  .packages__head,
  .schedule__head { grid-template-columns: 1fr; gap: 30px; }
  .manifesto__label,
  .faq__intro { position: static; }
  .manifesto__copy { padding-left: 0; border-left: 0; }
  .principle { grid-template-columns: 60px minmax(190px,.8fr) minmax(0,1.2fr); }
  .gallery__intro { grid-template-columns: 1fr; gap: 20px; }
  .gallery__lead { justify-self: start; max-width: 650px; }
  .gallery__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery__item:last-child { grid-column: 1 / -1; width: calc(50% - 12px); }
  .about__grid { gap: 50px; }
  .package-row { grid-template-columns: 48px minmax(220px,1fr) 150px 110px 22px; }
  .faq__grid { grid-template-columns: 1fr; gap: 50px; }
}

/* Mobile navigation and layout */
@media (max-width: 820px) {
  .site-header { color: var(--white); }
  .site-header.is-scrolled { color: var(--ink); }
  .header__inner { min-height: 80px; grid-template-columns: auto 1fr auto; }
  .brand img { width: 190px; }
  .header__book { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    top: 80px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 18px 22px;
    color: var(--ink);
    background: rgba(247,244,239,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s var(--ease);
  }
  .primary-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .primary-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }
  .hero__layout { padding-top: 138px; }
  .hero__scroll { display: none; }
  .cinema__content { padding-bottom: 190px; }
  .circle-link { left: 0; right: auto; bottom: 44px; width: 120px; height: 120px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item:last-child { grid-column: auto; width: auto; }
  .gallery__image { height: 620px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__portrait > div { height: 620px; }
  .package-row {
    grid-template-columns: 38px 1fr auto;
    gap: 14px;
  }
  .package-row__validity { grid-column: 2; }
  .package-row strong { grid-column: 3; grid-row: 1 / 3; }
  .package-row i { display: none; }
  .schedule__days { grid-template-columns: repeat(3,1fr); }
  .schedule__days article { min-height: 145px; }
  .schedule__action { align-items: flex-start; flex-direction: column; }
  .first-ride__steps { grid-template-columns: repeat(2,1fr); }
  .first-ride__steps > div:nth-child(2) { border-right: 0; }
  .first-ride__steps > div:nth-child(n+3) { margin-top: 20px; border-top: 1px solid rgba(255,255,255,.18); padding-top: 20px; }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  :root { --shell: min(1240px, calc(100vw - 28px)); }
  .section { padding: 84px 0; }
  .loader::before,
  .final-cta::after { inset: 10px; }
  .brand img { width: 170px; }
  .hero { min-height: 860px; }
  .hero__layout { padding: 125px 0 38px; gap: 34px; }
  .hero h1 { font-size: clamp(4.2rem, 21vw, 6.3rem); }
  .hero__intro { max-width: 95%; margin-top: 24px; }
  .hero__actions { flex-direction: column; }
  .button { width: 100%; }
  .hero__details { grid-template-columns: 1fr; }
  .hero__details > div { grid-template-columns: 28px 1fr; border-right: 0; }
  .display { font-size: clamp(3.15rem, 15vw, 5rem); }
  .statement { font-size: clamp(3rem, 14vw, 4.7rem); }
  .cinema { min-height: 820px; }
  .cinema__content h2 { font-size: clamp(3.8rem, 17vw, 6rem); }
  .principle { grid-template-columns: 40px 1fr; gap: 16px; }
  .principle p { grid-column: 2; }
  .gallery__image { height: 470px; }
  .gallery__item figcaption { grid-template-columns: 1fr; gap: 7px; }
  .about__portrait { padding: 0 0 24px 20px; }
  .about__portrait > div { height: 510px; }
  .package-row { padding: 23px 0; }
  .package-row h3 { font-size: 1.45rem; }
  .package-row:hover { padding-inline: 12px; }
  .schedule__placeholder { padding: 18px; }
  .schedule__days { grid-template-columns: repeat(2,1fr); }
  .first-ride { min-height: 870px; }
  .first-ride__steps { grid-template-columns: 1fr; }
  .first-ride__steps > div,
  .first-ride__steps > div:not(:first-child) {
    padding: 15px 0;
    margin: 0;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }
  .faq-item button { font-size: .88rem; padding: 20px 0; }
  .final-cta { padding: 105px 0; }
  .final-cta h2 { font-size: clamp(4rem, 19vw, 6rem); }
  .footer__top { align-items: flex-start; flex-direction: column; }
  .footer__logo img { width: 240px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Final boutique hero and typography refinement */
@font-face {
  font-family: "BauhausWeb";
  src:
    local("Bauhaus 93"),
    local("Bauhaus93"),
    local("ITC Bauhaus"),
    local("Bauhaus Std Medium"),
    local("Bauhaus");
  font-display: swap;
}

:root {
  --display: "BauhausWeb", "Bauhaus 93", "ITC Bauhaus", "Bauhaus", sans-serif;
  --body: "Montserrat", Arial, sans-serif;
}

body,
p,
a,
li,
input,
textarea,
button,
label,
small,
figcaption {
  font-family: var(--body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display,
.statement,
.hero h1,
.primary-nav > a,
.package__name,
.faq-item button > span,
.cta-panel h2,
.footer__title {
  font-family: var(--display);
}

.site-header {
  color: var(--ink);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247,244,239,.94);
}

.primary-nav a::after {
  background: var(--lavender-deep);
}

.hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(215,172,245,.18), transparent 26%),
    linear-gradient(180deg, #f8f5f0 0%, #f5f1eb 100%);
  color: var(--ink);
}

.hero__media {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 116px 38px 0 38px;
}

.hero__media img {
  width: min(760px, 46vw);
  height: min(900px, calc(100svh - 116px));
  object-fit: contain;
  object-position: right bottom;
  transform: translateY(8px);
}

body.is-ready .hero__media img {
  transform: translateY(0);
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(248,245,240,1) 0%, rgba(248,245,240,.98) 26%, rgba(248,245,240,.92) 42%, rgba(248,245,240,.72) 55%, rgba(248,245,240,.26) 74%, rgba(248,245,240,.02) 90%),
    linear-gradient(180deg, rgba(248,245,240,.24) 0%, rgba(248,245,240,0) 50%);
}

.hero__grain {
  opacity: .025;
}

.hero__layout {
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: center;
  min-height: 100svh;
  padding: 150px 0 56px;
  gap: 42px;
}

.hero__content {
  max-width: 620px;
}

.hero .eyebrow {
  color: var(--lavender-deep);
}

.hero h1 {
  color: var(--ink-deep);
  font-size: clamp(4.6rem, 9vw, 9.2rem);
  letter-spacing: -.025em;
}

.hero-line--accent {
  color: var(--lavender-deep);
}

.hero__intro {
  max-width: 520px;
  color: var(--ink-soft);
  font-weight: 400;
}

.hero .button--ghost {
  color: var(--ink);
  border-color: rgba(36,36,36,.18);
  background: rgba(255,255,255,.38);
  backdrop-filter: blur(8px);
}

.hero .button--ghost:hover {
  background: rgba(255,255,255,.70);
}

.hero__details {
  border-top: 1px solid var(--line-strong);
}

.hero__details > div {
  border-bottom: 1px solid var(--line);
}

.hero__details span {
  color: var(--lavender-deep);
}

.hero__details p {
  color: var(--ink-deep);
}

.hero__scroll {
  color: rgba(36,36,36,.72);
}

@media (max-width: 1180px) {
  .hero__media {
    padding-right: 24px;
    padding-left: 24px;
  }
  .hero__media img {
    width: min(670px, 48vw);
  }
}

@media (max-width: 980px) {
  .hero {
    align-items: start;
  }
  .hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 26px;
    padding: 116px 0 42px;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__media {
    justify-content: center;
    align-items: flex-end;
    padding: 108px 14px 0;
  }
  .hero__media img {
    width: min(100%, 560px);
    height: min(74svh, 760px);
    object-position: center bottom;
  }
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(248,245,240,.90) 0%, rgba(248,245,240,.72) 22%, rgba(248,245,240,.34) 42%, rgba(248,245,240,.08) 62%, rgba(248,245,240,0) 82%);
  }
}

@media (max-width: 640px) {
  .hero__media {
    padding: 94px 8px 0;
  }
  .hero__media img {
    width: 100%;
    height: min(68svh, 640px);
  }
  .hero h1 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }
}

/* Hero full-width banner revision and FAQ readability fix */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--ink-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

body.is-ready .hero__media img {
  transform: scale(1);
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(20,20,20,.74) 0%, rgba(20,20,20,.58) 28%, rgba(20,20,20,.30) 48%, rgba(20,20,20,.10) 68%, rgba(20,20,20,.03) 100%),
    linear-gradient(180deg, rgba(20,20,20,.26) 0%, rgba(20,20,20,.10) 38%, rgba(20,20,20,.36) 100%);
}

.hero__grain {
  opacity: .05;
}

.hero__layout {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: end;
  min-height: 100svh;
  padding: 160px 0 58px;
  gap: 44px;
}

.hero__content {
  max-width: 620px;
}

.hero .eyebrow {
  color: rgba(255,255,255,.82);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(4.8rem, 9.4vw, 9.4rem);
  letter-spacing: -.03em;
}

.hero-line--accent {
  color: var(--lavender);
}

.hero__intro {
  max-width: 540px;
  color: rgba(255,255,255,.86);
  font-weight: 400;
  text-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.hero .button--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}

.hero .button--ghost:hover {
  background: rgba(255,255,255,.16);
}

.hero__details {
  border-top: 1px solid rgba(255,255,255,.24);
}

.hero__details > div {
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.hero__details span {
  color: var(--lavender);
}

.hero__details p {
  color: rgba(255,255,255,.92);
}

.hero__scroll {
  color: rgba(255,255,255,.76);
}

.faq-item button,
.faq-item button > span {
  font-family: var(--body) !important;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
}

.faq-answer p {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .hero__layout {
    grid-template-columns: 1fr;
    min-height: 100svh;
    align-items: end;
    padding: 128px 0 42px;
    gap: 24px;
  }
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(20,20,20,.48) 0%, rgba(20,20,20,.20) 40%, rgba(20,20,20,.50) 100%),
      linear-gradient(90deg, rgba(20,20,20,.34) 0%, rgba(20,20,20,.05) 55%, rgba(20,20,20,.18) 100%);
  }
}

@media (max-width: 640px) {
  .hero__media img {
    object-position: 60% center;
  }
  .hero h1 {
    font-size: clamp(3.4rem, 14vw, 5rem);
  }
  .faq-item button,
  .faq-item button > span {
    font-size: 1rem;
  }
}

/* Header readability refinement */
.site-header {
  color: var(--ink);
  background: rgba(247,244,239,.94);
  backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid rgba(36,36,36,.10);
}

.brand img,
.site-header.is-scrolled .brand img {
  filter: none;
}

.primary-nav {
  gap: 34px;
}

.primary-nav a {
  font-family: var(--body) !important;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1;
  color: var(--ink-deep);
  text-transform: uppercase;
}

.header__book {
  font-family: var(--body) !important;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .10em;
  color: var(--ink-deep);
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(36,36,36,.14);
  padding: 14px 22px;
}

.header__book:hover {
  color: var(--ink-deep);
  background: var(--lavender);
  border-color: var(--lavender);
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(247,244,239,.96);
  }
  .primary-nav a {
    font-size: .95rem;
    letter-spacing: .06em;
  }
}


/* Temporary layout while booking and timetable integrations are hidden */
@media (min-width: 981px) {
  .header__inner { grid-template-columns: auto 1fr; }
  .primary-nav { justify-content: flex-end; }
}
.footer__grid { grid-template-columns: 1fr 1.25fr 1fr; }
.package-row {
  grid-template-columns: 54px minmax(250px, 1fr) 180px 150px;
  cursor: default;
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; }
}


/* WordPress integration */
body.admin-bar .site-header { top: 32px; }
.wp-content-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: 150px 0 100px;
  min-height: 70vh;
}
.wp-content-shell h1,
.wp-content-shell h2,
.wp-content-shell h3 { font-family: var(--display); }
.wp-content-shell img { height: auto; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* =========================================================
   ELEMENTOR-EDITABLE CLEATS CYCLE HOMEPAGE
   ========================================================= */

.primary-nav__list,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
.primary-nav__list li { margin: 0; }
.footer-menu li { margin: 0 0 8px; }
.footer-menu a { display: inline-block; }
.header__spacer { width: 1px; }

.cc-elementor-main {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.cc-elementor-main .elementor {
  margin: 0;
}
.cc-elementor-main .elementor-section-wrap,
.cc-elementor-main .elementor-section,
.cc-elementor-main .elementor-container {
  position: relative;
}
.cc-elementor-main .elementor-widget-heading .elementor-heading-title,
.cc-elementor-main h1,
.cc-elementor-main h2,
.cc-elementor-main h3,
.cc-elementor-main h4,
.cc-elementor-main h5,
.cc-elementor-main h6 {
  font-family: var(--display) !important;
  color: inherit;
}
.cc-elementor-main .elementor-widget-text-editor,
.cc-elementor-main .elementor-widget-text-editor p,
.cc-elementor-main .elementor-button,
.cc-elementor-main .elementor-accordion-title,
.cc-elementor-main .elementor-tab-content {
  font-family: var(--body) !important;
}
.cc-elementor-main .elementor-widget:not(:last-child) { margin-bottom: 0; }
.cc-elementor-main .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0;
}

.cc-section > .elementor-container,
.cc-hero-section > .elementor-container,
.cc-experience-section > .elementor-container,
.cc-first-ride-section > .elementor-container {
  width: var(--shell);
  max-width: 1240px;
  margin-inline: auto;
}
.cc-section {
  padding: 132px 0;
  background: var(--ivory);
}
.cc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s var(--ease);
}
.cc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cc-eyebrow .elementor-widget-container,
.cc-eyebrow p {
  margin: 0;
}
.cc-eyebrow p {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cc-eyebrow p::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}
.cc-eyebrow.cc-light p { color: rgba(255,255,255,.84); }

.cc-hero-section {
  min-height: 100svh;
  color: var(--white);
  overflow: hidden;
}
.cc-hero-section > .elementor-background-overlay { opacity: 1 !important; }
.cc-hero-section > .elementor-container {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 62px;
}
.cc-hero-main > .elementor-element-populated { padding-right: 64px !important; }
.cc-hero-title { margin-top: 22px; }
.cc-hero-title .elementor-heading-title {
  margin: 0;
  color: var(--white) !important;
  font-size: clamp(4.8rem, 9.4vw, 9.4rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.03em;
}
.cc-hero-title .elementor-heading-title span { color: var(--lavender); }
.cc-hero-copy {
  max-width: 570px;
  margin-top: 30px;
}
.cc-hero-copy p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}
.cc-button { margin-top: 30px; }
.cc-button .elementor-button {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.cc-button .elementor-button:hover {
  color: var(--ink);
  background: var(--lavender);
  border-color: var(--lavender);
  transform: translateY(-2px);
}
.cc-hero-side { align-self: flex-end; }
.cc-hero-details {
  border-top: 1px solid rgba(255,255,255,.28);
}
.cc-hero-details > .elementor-container { display: block; width: 100%; }
.cc-hero-details .elementor-column {
  width: 100% !important;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.cc-hero-details .elementor-element-populated {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 17px 0 !important;
}
.cc-detail-number .elementor-heading-title {
  color: var(--lavender) !important;
  font-family: var(--body) !important;
  font-size: .68rem;
  letter-spacing: .12em;
}
.cc-detail-copy p {
  margin: 0;
  color: rgba(255,255,255,.94);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cc-manifesto-section { background: var(--ivory); }
.cc-manifesto-section > .elementor-container { align-items: flex-start; gap: 72px; }
.cc-statement .elementor-heading-title,
.cc-display .elementor-heading-title,
.cc-display-light .elementor-heading-title {
  margin: 0;
  font-size: clamp(3.8rem, 7.2vw, 7rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.025em;
}
.cc-statement .elementor-heading-title span,
.cc-display .elementor-heading-title span { color: var(--lavender-deep); }
.cc-display-light .elementor-heading-title { color: var(--white) !important; }
.cc-display-light .elementor-heading-title span { color: var(--lavender); }
.cc-body-large {
  max-width: 650px;
  margin-top: 34px;
}
.cc-body-large p,
.cc-body-light p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.cc-body-light { max-width: 560px; margin-top: 24px; }
.cc-body-light p { color: rgba(255,255,255,.82); }

.cc-experience-section,
.cc-first-ride-section {
  min-height: 78svh;
  color: var(--white);
  overflow: hidden;
}
.cc-experience-section > .elementor-container,
.cc-first-ride-section > .elementor-container {
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 78px;
}
.cc-experience-copy { max-width: 740px; }

.cc-principles-section { background: var(--white); }
.cc-principles-grid { margin-top: 58px; }
.cc-principles-grid > .elementor-container { gap: 0; }
.cc-principle-card {
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
  min-height: 270px;
  transition: background .3s ease;
}
.cc-principle-card:last-child { border-right: 0; }
.cc-principle-card > .elementor-element-populated {
  padding: 28px 28px 34px !important;
}
.cc-principle-card:hover { background: var(--lavender-pale); }
.cc-card-title .elementor-heading-title {
  font-family: var(--body) !important;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}
.cc-card-copy { margin-top: 16px; }
.cc-card-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.cc-gallery-section { background: var(--ivory); }
.cc-gallery-grid { margin-top: 52px; }
.cc-gallery-grid > .elementor-container { gap: 28px; }
.cc-gallery-card > .elementor-element-populated { padding: 0 !important; }
.cc-gallery-image .elementor-widget-container {
  height: 500px;
  overflow: hidden;
  background: #eee;
}
.cc-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.cc-gallery-card:hover .cc-gallery-image img { transform: scale(1.025); }
.cc-gallery-label {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.cc-gallery-label .elementor-heading-title {
  color: var(--lavender-deep) !important;
  font-family: var(--body) !important;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cc-gallery-copy { margin-top: 9px; }
.cc-gallery-copy p { margin: 0; line-height: 1.7; }

.cc-about-section { background: var(--white); }
.cc-about-section > .elementor-container { gap: 72px; align-items: center; }
.cc-about-image .elementor-widget-container { height: 720px; overflow: hidden; }
.cc-about-image img { width: 100%; height: 100%; object-fit: cover; }
.cc-image-caption { margin-top: 14px; }
.cc-image-caption p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cc-about-copy { margin-top: 30px; }
.cc-about-copy p { margin: 0 0 18px; color: var(--ink-soft); line-height: 1.78; }

.cc-packages-section {
  background: var(--ink-deep);
  color: var(--white);
}
.cc-packages-intro { max-width: 620px; margin-top: 24px; margin-bottom: 48px; }
.cc-packages-intro p { color: rgba(255,255,255,.72); line-height: 1.75; }
.cc-package-row {
  border-top: 1px solid rgba(255,255,255,.16);
  transition: background .28s ease, padding .28s ease;
}
.cc-package-row:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.cc-package-row > .elementor-container { align-items: center; min-height: 120px; }
.cc-package-row .elementor-element-populated { padding: 20px 12px !important; }
.cc-package-row:hover { background: rgba(215,172,245,.08); }
.cc-package-featured { background: rgba(215,172,245,.1); }
.cc-package-number .elementor-heading-title {
  color: var(--lavender) !important;
  font-family: var(--body) !important;
  font-size: .68rem;
  letter-spacing: .12em;
}
.cc-package-title .elementor-heading-title {
  color: var(--white) !important;
  font-family: var(--body) !important;
  font-size: 1.4rem;
  font-weight: 700;
}
.cc-package-copy p,
.cc-package-validity p { margin: 5px 0 0; color: rgba(255,255,255,.62); font-size: .88rem; }
.cc-package-validity p { margin: 0; }
.cc-package-price .elementor-heading-title {
  color: var(--white) !important;
  text-align: right;
  font-size: 2.1rem;
}

.cc-first-ride-content { max-width: 100%; }
.cc-steps-grid { margin-top: 46px; }
.cc-steps-grid > .elementor-container { gap: 16px; }
.cc-step-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.cc-step-card > .elementor-element-populated { padding: 22px !important; }
.cc-step-number .elementor-heading-title {
  color: var(--lavender) !important;
  font-family: var(--body) !important;
  font-size: .7rem;
  letter-spacing: .12em;
}
.cc-step-copy { margin-top: 12px; }
.cc-step-copy p { margin: 0; color: rgba(255,255,255,.84); line-height: 1.6; }
.cc-step-copy strong { color: var(--white); }

.cc-faq-section { background: var(--white); }
.cc-faq-section > .elementor-container { gap: 82px; align-items: flex-start; }
.cc-faq-accordion .elementor-accordion { border-top: 1px solid var(--line-strong); }
.cc-faq-accordion .elementor-accordion-item { border: 0; border-bottom: 1px solid var(--line); }
.cc-faq-accordion .elementor-tab-title {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 22px 0;
  border: 0;
}
.cc-faq-accordion .elementor-accordion-title {
  color: var(--ink-deep);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}
.cc-faq-accordion .elementor-accordion-icon { margin-top: 2px; }
.cc-faq-accordion .elementor-tab-content {
  padding: 0 44px 24px 0;
  border: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.cc-elementor-editor .loader,
.cc-elementor-editor .cursor,
.cc-elementor-editor .scroll-progress { display: none !important; }
.cc-elementor-editor { overflow: auto !important; }
.elementor-editor-active .cc-reveal { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .cc-section { padding: 104px 0; }
  .cc-hero-section > .elementor-container { padding: 130px 0 48px; }
  .cc-hero-main > .elementor-element-populated { padding-right: 30px !important; }
  .cc-principles-grid > .elementor-container,
  .cc-gallery-grid > .elementor-container,
  .cc-steps-grid > .elementor-container { flex-wrap: wrap; }
  .cc-principle-card,
  .cc-gallery-card,
  .cc-step-card { width: 50% !important; }
  .cc-gallery-image .elementor-widget-container { height: 440px; }
  .cc-about-image .elementor-widget-container { height: 620px; }
}

@media (max-width: 820px) {
  .primary-nav__list {
    display: block;
  }
  .primary-nav__list li { border-bottom: 1px solid var(--line); }
  .primary-nav__list a { display: block; padding: 15px 0; }
  .cc-hero-section > .elementor-container,
  .cc-manifesto-section > .elementor-container,
  .cc-about-section > .elementor-container,
  .cc-faq-section > .elementor-container {
    display: block;
  }
  .cc-hero-section .elementor-column,
  .cc-manifesto-section .elementor-column,
  .cc-about-section .elementor-column,
  .cc-faq-section .elementor-column { width: 100% !important; }
  .cc-hero-main > .elementor-element-populated { padding-right: 0 !important; }
  .cc-hero-side { margin-top: 38px; }
  .cc-hero-details > .elementor-container { display: flex; }
  .cc-hero-details .elementor-column { width: 33.333% !important; border-right: 1px solid rgba(255,255,255,.18); }
  .cc-hero-details .elementor-column:last-child { border-right: 0; }
  .cc-hero-details .elementor-element-populated { display: block; padding: 15px !important; }
  .cc-detail-copy { margin-top: 8px; }
  .cc-about-section .elementor-column:last-child,
  .cc-faq-section .elementor-column:last-child { margin-top: 50px; }
  .cc-package-row > .elementor-container { flex-wrap: wrap; }
  .cc-package-row .elementor-column:nth-child(1) { width: 10% !important; }
  .cc-package-row .elementor-column:nth-child(2) { width: 55% !important; }
  .cc-package-row .elementor-column:nth-child(3) { width: 35% !important; }
  .cc-package-row .elementor-column:nth-child(4) { width: 100% !important; }
  .cc-package-price .elementor-heading-title { text-align: left; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 28px); }
  .cc-section { padding: 82px 0; }
  .cc-hero-title .elementor-heading-title { font-size: clamp(3.45rem, 15vw, 5.2rem); }
  .cc-statement .elementor-heading-title,
  .cc-display .elementor-heading-title,
  .cc-display-light .elementor-heading-title { font-size: clamp(3rem, 13vw, 4.7rem); }
  .cc-principle-card,
  .cc-gallery-card,
  .cc-step-card { width: 100% !important; }
  .cc-gallery-image .elementor-widget-container { height: 430px; }
  .cc-about-image .elementor-widget-container { height: 520px; }
  .cc-hero-details > .elementor-container { display: block; }
  .cc-hero-details .elementor-column { width: 100% !important; border-right: 0; }
  .cc-hero-details .elementor-element-populated { display: grid; grid-template-columns: 32px 1fr; }
  .cc-package-row .elementor-column:nth-child(1) { width: 15% !important; }
  .cc-package-row .elementor-column:nth-child(2) { width: 85% !important; }
  .cc-package-row .elementor-column:nth-child(3),
  .cc-package-row .elementor-column:nth-child(4) { width: 50% !important; }
  .cc-package-price .elementor-heading-title { text-align: right; }
}
