:root {
  --blue: #293a8b;
  --orange: #f68920;
  --gold: #d4af37;
  --black: #000000;
  --white: #ffffff;
  --mono: "Roboto Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --condensed: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --sans: Montserrat, Arial, sans-serif;
  --container: 1064px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 96px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-180%);
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  padding: 32px 0 24px;
  transition: padding 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(41, 58, 139, 0.11);
  padding: 18px 0 16px;
  backdrop-filter: blur(12px);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: block;
  width: 212px;
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.brand:hover {
  transform: translateY(-2px) scale(1.025);
}

.language-switch {
  position: relative;
  justify-self: end;
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 30px;
  font-weight: 300;
  transition: color 180ms ease, transform 180ms ease;
}

.language-switch::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  content: "";
}

.language-switch:hover,
.language-switch:focus-visible {
  color: var(--blue);
  transform: translateY(-2px);
}

.language-switch:hover::after,
.language-switch:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-main {
  overflow: hidden;
}

.event-button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: var(--orange);
  color: var(--white);
  padding: 9px 28px 11px;
  font-family: var(--condensed);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.event-button::after,
.wp-element-button::after,
.woocommerce a.button::after,
.woocommerce button.button::after,
.woocommerce input.button::after,
.woocommerce #respond input#submit::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-115%) skewX(-18deg);
  transition: transform 420ms ease;
  content: "";
}

.event-button:hover,
.event-button:focus-visible,
.wp-element-button:hover,
.wp-element-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce a.button:focus-visible,
.woocommerce button.button:hover,
.woocommerce button.button:focus-visible,
.woocommerce input.button:hover,
.woocommerce input.button:focus-visible,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus-visible {
  box-shadow: 0 14px 28px rgba(41, 58, 139, 0.18);
  transform: translateY(-3px);
}

.event-button:hover::after,
.event-button:focus-visible::after,
.wp-element-button:hover::after,
.wp-element-button:focus-visible::after,
.woocommerce a.button:hover::after,
.woocommerce a.button:focus-visible::after,
.woocommerce button.button:hover::after,
.woocommerce button.button:focus-visible::after,
.woocommerce input.button:hover::after,
.woocommerce input.button:focus-visible::after,
.woocommerce #respond input#submit:hover::after,
.woocommerce #respond input#submit:focus-visible::after {
  transform: translateX(115%) skewX(-18deg);
}

.event-button:active,
.wp-element-button:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active,
.woocommerce #respond input#submit:active {
  transform: translateY(0) scale(0.98);
}

.event-button-light {
  background: var(--white);
  color: var(--blue);
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
}

.motion-ready .motion-reveal.motion-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 620ms ease, transform 620ms ease;
}

.motion-ready .motion-split-line {
  display: inline-block;
  transform-origin: left bottom;
}

.section-pad {
  padding: 92px 0;
}

.event-hero {
  position: relative;
  min-height: 1180px;
  background: var(--white);
}

.hero-runners {
  width: 100%;
  height: 626px;
  object-fit: cover;
  object-position: center;
}

.hero-athlete {
  position: absolute;
  left: calc(50% - 650px);
  top: 360px;
  width: 501px;
  z-index: 1;
}

.hero-copy-lockup {
  position: relative;
  z-index: 2;
  margin-top: -84px;
}

.event-hero h1 {
  margin: 0 0 72px auto;
  width: 737px;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 120px;
  font-weight: 700;
  line-height: 0.93;
}

.event-date {
  margin: 0;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 100px;
  font-weight: 700;
  line-height: 0.96;
  text-align: right;
}

.video-grid {
  display: flex;
  justify-content: center;
}

.video-media {
  position: relative;
  width: min(100%, 1062px);
  aspect-ratio: 16 / 9;
  background: #0f0f12;
  border-left: 8px solid var(--orange);
  box-shadow: 0 24px 44px rgba(41, 58, 139, 0.18);
  overflow: hidden;
}

.video-launch {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--white);
  text-decoration: none;
}

.video-launch::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 28, 0.18) 0%, rgba(10, 14, 28, 0.4) 100%),
    linear-gradient(90deg, rgba(41, 58, 139, 0.2) 0%, rgba(15, 15, 18, 0.08) 45%, rgba(15, 15, 18, 0.5) 100%);
}

.video-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-launch-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  background: rgba(41, 58, 139, 0.92);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(255, 133, 31, 0.94);
  box-shadow: 0 18px 28px rgba(15, 15, 18, 0.24);
  transform: translate(-50%, -50%);
}

.video-play-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 27px solid var(--white);
  transform: translate(-35%, -50%);
}

.video-launch:hover .video-play-icon,
.video-launch:focus-visible .video-play-icon {
  background: rgba(41, 58, 139, 0.96);
}

.video-fallback {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.video-fallback:hover,
.video-fallback:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.intro-blue {
  background: var(--blue);
  color: var(--white);
  padding: 116px 0 122px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.ghost-word {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--condensed);
  font-size: 150px;
  font-weight: 700;
  line-height: 0.93;
}

.intro-copy p {
  margin: 0 0 70px;
  font-size: 35px;
  line-height: 1.17;
}

.pylos-story {
  position: relative;
  min-height: 780px;
  color: var(--white);
}

.pylos-panorama {
  width: 100%;
  height: 607px;
  object-fit: cover;
}

.pylos-story::after {
  position: absolute;
  inset: 0 0 auto;
  height: 607px;
  background: rgba(0, 0, 0, 0.18);
  content: "";
}

.pylos-overlap {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  margin-top: -280px;
}

.pylos-overlap div {
  width: 739px;
  text-align: right;
}

.pylos-overlap h2 {
  margin: 0 0 360px;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 120px;
  font-weight: 700;
  line-height: 0.93;
  text-align: left;
}

.pylos-overlap p {
  margin: 0;
  font-size: 30px;
  line-height: 1.17;
}

.landscape-grid {
  display: grid;
  grid-template-columns: 1fr 611px;
  gap: 42px;
  align-items: center;
}

.landscape-title h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 100px;
  font-weight: 800;
  line-height: 1.03;
  text-align: right;
}

.landscape-grid img {
  width: 611px;
  aspect-ratio: 611 / 621;
  object-fit: cover;
}

.program {
  text-align: center;
}

.super-title {
  margin: 0 0 20px;
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 120px;
  font-weight: 700;
  line-height: 0.93;
  text-align: left;
}

.program h2,
.join-section h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 70px;
  font-weight: 500;
  line-height: 0.96;
}

.section-lead {
  margin: 22px auto 30px;
  font-size: 35px;
  line-height: 0.96;
}

.course-strip {
  display: grid;
  grid-template-columns: 1fr 200px 200px;
  width: 100%;
  height: 618px;
  margin-top: 28px;
  overflow: hidden;
}

.course-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 240ms ease, transform 520ms ease;
}

.course-strip:hover img {
  filter: saturate(1.05) contrast(1.03);
}

.race-chip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: -88px;
  position: relative;
  z-index: 1;
}

.race-chip-row span {
  display: inline-flex;
  min-width: 160px;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 90px;
  font-weight: 700;
  line-height: 0.96;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.race-chip-row span:hover {
  background: var(--orange);
  transform: translateY(-4px);
}

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

.split-feature-reverse {
  grid-template-columns: minmax(0, 1fr) 558px;
}

.split-feature img {
  width: 100%;
  max-height: 803px;
  object-fit: cover;
  transition: filter 240ms ease, transform 520ms ease;
}

.split-feature img:hover {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.015);
}

.split-feature h2,
.awards-feature h2 {
  margin: 0 0 42px;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 100px;
  font-weight: 800;
  line-height: 1.03;
}

.awards-feature h2 {
  color: var(--orange);
  text-align: right;
}

.split-feature p {
  margin: 0;
  font-family: var(--condensed);
  font-size: 50px;
  line-height: 0.96;
}

.awards-feature p {
  font-family: var(--mono);
  font-size: 35px;
  line-height: 1.03;
  text-align: right;
}

.join-section h2 {
  margin: 0 0 28px;
  font-family: var(--condensed);
  font-size: 130px;
  font-weight: 800;
  line-height: 0.83;
  text-align: center;
}

.join-section h2 span {
  color: var(--blue);
}

.join-section h2 strong {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0 22px 12px;
  font-weight: 800;
  transform-origin: center;
  transition: transform 220ms ease;
}

.join-section h2:hover strong {
  transform: rotate(-1deg) translateY(-3px);
}

.join-section h3 {
  margin-bottom: 72px;
  text-align: center;
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 44px;
  align-items: start;
}

.join-grid img {
  width: 100%;
  aspect-ratio: 686 / 756;
  object-fit: cover;
  transition: filter 240ms ease, transform 520ms ease;
}

.join-grid img:hover {
  filter: saturate(1.06);
  transform: scale(1.012);
}

.join-grid p {
  margin: 0;
  font-size: 35px;
  line-height: 1.05;
}

.packages {
  background: var(--blue);
  color: var(--white);
  padding: 112px 0;
}

.packages h2 {
  margin: 0 0 64px;
  font-family: var(--condensed);
  font-size: 130px;
  font-weight: 800;
  line-height: 0.83;
}

.package-list {
  display: grid;
  gap: 36px;
}

.package-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1fr) 168px;
  gap: 26px;
  align-items: center;
  background: var(--white);
  color: var(--black);
  padding: 30px 34px;
  transform: translateZ(0);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.package-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease;
  content: "";
}

.package-card:hover,
.package-card:focus-within {
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px);
}

.package-card:hover::before,
.package-card:focus-within::before {
  transform: scaleY(1);
}

.package-distance {
  color: var(--orange);
  font-size: 0;
  white-space: nowrap;
}

.package-distance span,
.package-distance small {
  font-family: var(--mono);
  font-size: clamp(88px, 7.4vw, 106px);
  font-weight: 400;
  line-height: 0.96;
}

.package-distance small {
  margin-left: 12px;
}

.package-card p {
  margin: 0;
  font-size: clamp(25px, 2.25vw, 31px);
  line-height: 1.16;
}

.package-card strong {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  font-family: var(--condensed);
  font-size: clamp(48px, 4.3vw, 58px);
  font-weight: 400;
  transition: background-color 180ms ease, transform 180ms ease;
}

.package-card:hover strong {
  background: var(--orange);
  transform: scale(1.04);
}

.package-card .event-button {
  grid-column: 2 / 4;
  justify-self: start;
}

.premium-package {
  background: var(--blue);
  color: var(--white);
  padding: 88px 0 118px;
}

.premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 54px;
  align-items: center;
}

.premium-copy h2 {
  margin: 0 0 28px;
  font-family: var(--condensed);
  font-size: 110px;
  font-weight: 800;
  line-height: 0.91;
}

.premium-copy h3 {
  margin: 0 0 18px;
  font-family: var(--condensed);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.18;
}

.price {
  margin: 0 0 18px;
  font-size: 70px;
  font-weight: 700;
}

.includes,
.premium-copy li,
.premium-copy p {
  font-size: 35px;
  line-height: 0.96;
}

.premium-copy ul {
  margin: 20px 0 40px;
  padding-left: 34px;
}

.premium-grid img {
  width: 100%;
  aspect-ratio: 659 / 778;
  object-fit: cover;
  transition: filter 240ms ease, transform 520ms ease;
}

.premium-grid img:hover {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.012);
}

.athlete-bio {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  padding: 78px 0 112px;
}

.bio-heading {
  position: relative;
  z-index: 2;
}

.bio-heading h2 {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: clamp(76px, 8vw, 118px);
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
}

.bio-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(360px, 1fr);
  gap: 0;
  align-items: center;
  min-height: 0;
}

.bio-portrait {
  margin: 0;
  min-width: 0;
}

.bio-portrait img {
  width: 100%;
  aspect-ratio: 650 / 432;
  object-fit: cover;
  object-position: 44% 20%;
  filter: grayscale(1) contrast(1.03);
}

.bio-copy {
  position: relative;
  z-index: 1;
  margin-left: -82px;
  background: var(--orange);
  color: var(--white);
  padding: 42px 46px;
  box-shadow: 0 22px 38px rgba(41, 58, 139, 0.18);
}

.bio-copy p {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(20px, 1.75vw, 25px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0;
  text-decoration: none;
}

.highlights h2,
.site-footer h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 130px;
  font-weight: 800;
  line-height: 0.83;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.highlight-grid img {
  width: 100%;
  aspect-ratio: 520 / 309;
  object-fit: cover;
  transition: filter 220ms ease, transform 420ms ease;
}

.highlight-grid img:hover {
  filter: saturate(1.08) contrast(1.04);
  transform: translateY(-5px) scale(1.02);
}

.final-cta {
  background: var(--blue);
  color: var(--white);
  padding: 76px 0 90px;
  text-align: center;
}

.final-cta p {
  max-width: 968px;
  margin: 0 auto 32px;
  font-size: 30px;
  line-height: 1.1;
}

.site-footer {
  background: var(--blue);
  color: var(--white);
  padding: 74px 0 82px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 247px 1fr;
  gap: 42px;
  align-items: end;
}

.footer-logo img {
  width: 247px;
}

.site-footer h2 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.footer-contact address,
.footer-social a {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.22;
}

.footer-contact,
.footer-logo,
.footer-social {
  min-width: 0;
}

.footer-contact address,
.footer-contact a,
.footer-social a {
  overflow-wrap: anywhere;
}

.footer-social {
  text-align: right;
}

.footer-credit {
  grid-column: 1 / -1;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
}

.footer-credit a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--orange);
}

.shop-shell,
.page-shell {
  padding: 64px 0;
}

.page-content {
  max-width: 820px;
}

.product-registration-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--white);
}

.registration-runner {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.registration-athlete {
  position: absolute;
  left: calc(50% - 590px);
  top: 180px;
  z-index: 1;
  width: 430px;
  pointer-events: none;
}

.registration-title-grid {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: end;
  margin-top: -96px;
}

.registration-title-grid > div {
  width: min(100%, 725px);
}

.registration-title-grid h1,
.tsiklitira-checkout-heading h1,
.tsiklitira-thankyou h1 {
  margin: 0;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 118px;
  font-weight: 800;
  line-height: 0.9;
}

.registration-distance,
.checkout-distance {
  margin: 28px 0 0;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 96px;
  font-weight: 700;
  line-height: 0.96;
  text-align: right;
}

.product-registration-body {
  padding: 76px 0 100px;
  background: var(--white);
}

.product-registration-grid {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.registration-summary {
  position: sticky;
  top: 24px;
  min-width: 0;
  border-left: 14px solid var(--blue);
  padding: 8px 0 12px 28px;
  transition: border-color 180ms ease, transform 220ms ease;
}

.registration-summary:hover {
  border-left-color: var(--orange);
  transform: translateX(4px);
}

.summary-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 28px;
  font-weight: 700;
}

.registration-summary h2 {
  margin: 0 0 22px;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 54px;
  font-weight: 800;
  line-height: 0.96;
}

.registration-summary p:not(.summary-label) {
  margin: 0 0 26px;
  font-size: 23px;
  line-height: 1.18;
}

.registration-summary strong {
  display: inline-flex;
  min-width: 140px;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  padding: 6px 22px;
  font-family: var(--condensed);
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
}

.registration-panel {
  min-width: 0;
  background: var(--blue);
  color: var(--white);
  padding: 44px;
  box-shadow: 0 0 0 rgba(41, 58, 139, 0);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.registration-panel:hover,
.registration-panel:focus-within {
  box-shadow: 0 28px 45px rgba(41, 58, 139, 0.22);
  transform: translateY(-3px);
}

.registration-panel h2,
.tsiklitira-checkout-heading h2,
.participant-two-heading h2,
.terms-panel h2,
.cart_totals h2,
.woocommerce-checkout #order_review_heading {
  margin: 0;
  font-family: var(--condensed);
  font-size: 54px;
  font-weight: 800;
  line-height: 0.96;
}

.registration-panel h2 {
  color: var(--white);
}

.participant-label {
  margin: 10px 0 0;
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.package-cart-form {
  margin: 30px 0 34px;
}

.registration-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.registration-preview-grid span {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding: 10px 14px;
  font-family: var(--condensed);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.registration-preview-grid span::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-105%) skewX(-18deg);
  transition: transform 360ms ease;
  content: "";
}

.registration-preview-grid span:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.registration-preview-grid span:hover::after {
  transform: translateX(105%) skewX(-18deg);
}

.registration-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.35;
}

.package-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.package-switcher a {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--blue);
  color: var(--blue);
  padding: 10px 22px;
  font-family: var(--condensed);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.package-switcher a.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.package-switcher a:hover,
.package-switcher a:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-order-received .page-content {
  max-width: none;
}

.woocommerce-checkout .page-shell {
  padding-top: 8px;
}

.woocommerce-checkout .page-header,
.woocommerce-order-received .page-header {
  display: none;
}

.woocommerce-form-coupon-toggle,
.woocommerce-form-coupon {
  display: none;
}

.woocommerce-cart .page-header h1 {
  margin: 0 0 38px;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 86px;
  font-weight: 800;
  line-height: 0.96;
}

.woocommerce-notices-wrapper {
  margin-bottom: 24px;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  margin: 0 0 24px;
  border: 0;
  border-left: 8px solid var(--blue);
  background: #f5f5f5;
  padding: 18px 20px;
  color: var(--black);
  list-style: none;
  font-size: 17px;
  line-height: 1.35;
}

.woocommerce-error {
  border-left-color: var(--orange);
}

.woocommerce-message .button,
.woocommerce-info .button {
  float: right;
  min-height: 42px;
  margin-left: 16px;
  padding: 7px 18px;
  font-size: 24px;
}

.woocommerce table.shop_table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  margin: 0;
  text-align: left;
}

.woocommerce table.shop_table th {
  border-bottom: 3px solid var(--blue);
  color: var(--blue);
  padding: 14px 16px;
  font-family: var(--condensed);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.woocommerce table.shop_table td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding: 16px;
  vertical-align: middle;
}

.woocommerce table.shop_table .product-name a {
  color: var(--blue);
  font-weight: 700;
  transition: color 180ms ease;
}

.woocommerce table.shop_table .product-name a:hover,
.woocommerce table.shop_table .product-name a:focus-visible {
  color: var(--orange);
}

.woocommerce table.shop_table .product-remove a {
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 34px;
  line-height: 1;
}

.woocommerce .quantity .qty {
  width: 82px;
  min-height: 48px;
  border: 2px solid var(--blue);
  padding: 8px 10px;
  text-align: center;
}

.woocommerce-cart table.cart td.actions {
  padding: 22px 0 0;
}

.woocommerce-cart table.cart td.actions .coupon {
  display: inline-flex;
  gap: 12px;
  margin-right: 14px;
}

.woocommerce-cart table.cart td.actions .input-text {
  width: 210px;
  min-height: 48px;
  border: 2px solid var(--blue);
  padding: 8px 12px;
}

.cart-collaterals {
  display: grid;
  justify-content: end;
  margin-top: 38px;
}

.cart_totals {
  width: min(100%, 440px);
  background: var(--blue);
  color: var(--white);
  padding: 30px;
}

.cart_totals h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.cart_totals table.shop_table th,
.cart_totals table.shop_table td {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.wc-proceed-to-checkout {
  padding-top: 22px;
}

.wc-proceed-to-checkout .button {
  width: 100%;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: 0 46px;
  align-items: start;
}

.woocommerce-checkout #customer_details {
  grid-row: 1 / span 3;
  min-width: 0;
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  color: var(--blue);
  margin: 20px 0 14px;
  font-size: clamp(38px, 3.3vw, 50px);
}

.woocommerce-checkout #order_review {
  grid-column: 2;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: auto;
}

.woocommerce-checkout #customer_details .col-2 {
  margin-top: 38px;
}

.tsiklitira-checkout-heading {
  margin-bottom: 42px;
}

.tsiklitira-checkout-heading h1 {
  max-width: 620px;
  font-size: clamp(68px, 6.6vw, 92px);
  overflow-wrap: normal;
}

.checkout-distance {
  margin-bottom: 44px;
  text-align: left;
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3,
.tsiklitira-hidden-field {
  display: none;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.woocommerce form .form-row {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
  float: none;
  width: auto;
}

.woocommerce form .form-row-wide {
  grid-column: 1 / -1;
}

.woocommerce form .form-row label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.woocommerce form .form-row .required {
  color: var(--orange);
  text-decoration: none;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  min-height: 54px;
  border: 2px solid var(--blue);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  padding: 10px 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(246, 137, 32, 0.18);
  outline: 0;
  transform: translateY(-1px);
}

.woocommerce form .form-row textarea {
  min-height: 132px;
  resize: vertical;
}

.woocommerce form .form-row .select2-container .select2-selection--single {
  height: 54px;
  border: 2px solid var(--blue);
  border-radius: 0;
}

.woocommerce form .form-row .select2-selection__rendered {
  padding: 12px;
  line-height: 26px;
}

.woocommerce form .form-row .select2-selection__arrow {
  height: 50px;
}

.terms-panel {
  margin: 32px 0 0;
  border: 3px solid var(--blue);
  padding: 28px;
  transition: border-color 180ms ease, transform 220ms ease;
}

.terms-panel:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.terms-panel h2 {
  color: var(--blue);
  margin-bottom: 18px;
}

.terms-panel p {
  margin: 0;
  font-size: 19px;
  line-height: 1.36;
}

.participant-two-heading {
  margin: 0 0 22px;
}

.woocommerce-checkout-review-order {
  position: sticky;
  top: 24px;
  background: var(--blue);
  color: var(--white);
  padding: 28px;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.woocommerce-checkout-review-order:hover,
.woocommerce-checkout-review-order:focus-within {
  box-shadow: 0 24px 44px rgba(41, 58, 139, 0.24);
  transform: translateY(-3px);
}

.woocommerce-checkout-review-order table.shop_table th,
.woocommerce-checkout-review-order table.shop_table td {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  padding-inline: 0;
}

.woocommerce-checkout-review-order table.shop_table th {
  color: var(--white);
}

.woocommerce-checkout-review-order .order-total th,
.woocommerce-checkout-review-order .order-total td {
  font-size: 24px;
}

.woocommerce-checkout #payment {
  background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
  margin: 0;
  border: 0;
  padding: 10px 0 0;
  list-style: none;
}

.woocommerce-checkout #payment div.payment_box {
  margin: 14px 0 0;
  background: var(--white);
  color: var(--black);
  padding: 16px;
  font-size: 15px;
  line-height: 1.35;
}

.woocommerce-checkout #payment .place-order {
  margin: 24px 0 0;
  padding: 0;
}

.woocommerce-privacy-policy-text {
  display: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.4;
}

.woocommerce-checkout #place_order {
  width: 100%;
  white-space: normal;
}

.woocommerce .cart-empty {
  margin: 0 0 24px;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.tsiklitira-thankyou {
  display: grid;
  min-height: 620px;
  align-content: center;
  justify-items: center;
  padding: 72px 0 96px;
  text-align: center;
}

.tsiklitira-thankyou h1 {
  font-size: 130px;
}

.tsiklitira-thankyou p {
  margin: 24px 0 0;
  font-size: 32px;
  line-height: 1.1;
}

.tsiklitira-thankyou .order-reference {
  color: var(--orange);
  font-weight: 700;
}

.tsiklitira-thankyou .event-button {
  margin-top: 38px;
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .event-hero {
    min-height: 960px;
  }

  .hero-runners {
    height: 470px;
  }

  .hero-athlete {
    left: 40px;
    top: 310px;
    width: 360px;
  }

  .event-hero h1 {
    width: 620px;
    font-size: 96px;
  }

  .event-date,
  .video-block h2,
  .super-title {
    font-size: 76px;
  }

  .intro-grid,
  .landscape-grid,
  .split-feature,
  .split-feature-reverse,
  .join-grid,
  .premium-grid,
  .bio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ghost-word {
    font-size: 112px;
  }

  .landscape-grid img,
  .split-feature img {
    width: 100%;
  }

  .course-strip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .course-strip img {
    height: 340px;
  }

  .course-strip img:nth-child(n + 2) {
    display: none;
  }

  .package-card {
    grid-template-columns: 1fr;
  }

  .package-card .event-button {
    grid-column: auto;
  }

  .athlete-bio {
    padding: 76px 0 90px;
  }

  .bio-heading h2 {
    max-width: none;
    margin: 0 0 24px;
    text-align: left;
  }

  .bio-copy {
    width: min(92%, 720px);
    margin: -38px 0 0 auto;
  }

  .footer-social {
    text-align: left;
  }

  .product-registration-hero {
    min-height: 650px;
  }

  .registration-runner {
    height: 360px;
  }

  .registration-athlete {
    left: 42px;
    top: 215px;
    width: 320px;
  }

  .registration-title-grid h1,
  .tsiklitira-checkout-heading h1 {
    font-size: 86px;
  }

  .registration-distance,
  .checkout-distance {
    font-size: 72px;
  }

  .product-registration-grid,
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .registration-summary,
  .woocommerce-checkout-review-order {
    position: static;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: auto;
    grid-row: auto;
  }

  .woocommerce-checkout #order_review_heading {
    margin-top: 38px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 18px 0;
  }

  .header-grid {
    grid-template-columns: 1fr auto;
  }

  .header-spacer {
    display: none;
  }

  .brand {
    width: 150px;
  }

  .language-switch {
    font-size: 22px;
  }

  .event-button,
  .wp-element-button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit {
    width: 100%;
    min-height: 48px;
    font-size: 28px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .event-hero {
    min-height: 760px;
  }

  .hero-runners {
    height: 340px;
  }

  .hero-athlete {
    left: 12px;
    top: 246px;
    width: 230px;
  }

  .hero-copy-lockup {
    margin-top: -30px;
  }

  .event-hero h1 {
    width: 100%;
    margin-bottom: 44px;
    font-size: 58px;
    text-align: right;
  }

  .event-date,
  .video-block h2,
  .super-title,
  .pylos-overlap h2,
  .landscape-title h2,
  .split-feature h2,
  .awards-feature h2,
  .packages h2,
  .premium-copy h2,
  .bio-heading h2,
  .highlights h2 {
    font-size: 54px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-launch-badge {
    top: 14px;
    left: 14px;
    min-height: 34px;
    padding: 7px 12px;
    font-size: 18px;
  }

  .video-play-icon {
    width: 82px;
    height: 82px;
  }

  .video-play-icon::after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 21px;
  }

  .video-fallback {
    right: 12px;
    bottom: 12px;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 16px;
  }

  .video-block h2,
  .landscape-title h2,
  .awards-feature h2 {
    text-align: left;
  }

  .intro-blue {
    padding: 70px 0;
  }

  .ghost-word {
    font-size: 68px;
  }

  .intro-copy p,
  .join-grid p,
  .package-card p,
  .premium-copy p,
  .premium-copy li,
  .includes,
  .bio-copy p {
    font-size: 24px;
    line-height: 1.42;
  }

  .pylos-story {
    min-height: auto;
    background: var(--blue);
  }

  .pylos-panorama {
    height: 360px;
  }

  .pylos-overlap {
    display: block;
    margin-top: 0;
    padding: 42px 0 58px;
  }

  .pylos-overlap div {
    width: auto;
    text-align: left;
  }

  .pylos-overlap h2 {
    margin-bottom: 28px;
    color: var(--white);
  }

  .pylos-overlap p,
  .section-lead,
  .final-cta p {
    font-size: 22px;
  }

  .program h2,
  .join-section h3 {
    font-size: 42px;
  }

  .race-chip-row {
    flex-direction: column;
    margin-top: 28px;
  }

  .race-chip-row span {
    width: 100%;
    font-size: 56px;
  }

  .split-feature,
  .split-feature-reverse {
    gap: 32px;
  }

  .split-feature p {
    font-size: 32px;
  }

  .join-section h2 {
    font-size: 62px;
    text-align: left;
  }

  .package-distance span,
  .package-distance small {
    font-size: 70px;
  }

  .premium-copy h3 {
    font-size: 34px;
  }

  .price {
    font-size: 52px;
  }

  .athlete-bio,
  .bio-grid {
    min-height: auto;
  }

  .athlete-bio {
    padding: 58px 0 72px;
  }

  .bio-heading h2 {
    margin-bottom: 20px;
  }

  .bio-copy {
    width: auto;
    margin: 0;
    padding: 26px;
  }

  .bio-portrait img {
    aspect-ratio: 4 / 3;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 36px;
  }

  .product-registration-hero {
    min-height: 550px;
  }

  .registration-runner {
    height: 265px;
  }

  .registration-athlete {
    left: 8px;
    top: 205px;
    width: 210px;
  }

  .registration-title-grid {
    margin-top: -28px;
  }

  .registration-title-grid h1,
  .tsiklitira-checkout-heading h1,
  .tsiklitira-thankyou h1 {
    font-size: 56px;
  }

  .registration-distance,
  .checkout-distance {
    font-size: 48px;
  }

  .product-registration-body,
  .page-shell,
  .shop-shell {
    padding: 48px 0;
  }

  .registration-panel,
  .cart_totals,
  .woocommerce-checkout-review-order {
    padding: 24px;
  }

  .registration-panel h2,
  .tsiklitira-checkout-heading h2,
  .participant-two-heading h2,
  .terms-panel h2,
  .cart_totals h2,
  .woocommerce-checkout #order_review_heading {
    font-size: 38px;
  }

  .participant-label,
  .package-switcher a {
    font-size: 28px;
  }

  .registration-preview-grid,
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .registration-summary h2,
  .woocommerce-cart .page-header h1,
  .woocommerce .cart-empty {
    font-size: 48px;
  }

  .woocommerce table.shop_table {
    display: block;
    overflow-x: auto;
  }

  .woocommerce-message .button,
  .woocommerce-info .button {
    float: none;
    margin: 0 0 12px;
  }

  .woocommerce-cart table.cart td.actions .coupon {
    display: grid;
    margin: 0 0 12px;
  }

  .woocommerce-cart table.cart td.actions .input-text {
    width: 100%;
  }

  .cart-collaterals {
    justify-content: stretch;
  }

  .terms-panel {
    padding: 20px;
  }

  .terms-panel p {
    font-size: 16px;
  }

  .tsiklitira-thankyou {
    min-height: 420px;
  }

  .tsiklitira-thankyou p {
    font-size: 22px;
  }
}

.event-hero h1,
.ghost-word,
.pylos-overlap h2,
.super-title,
.registration-title-grid h1,
.tsiklitira-checkout-heading h1,
.tsiklitira-thankyou h1 {
  line-height: 1;
}

.event-date,
.video-block h2,
.landscape-title h2,
.program h2,
.join-section h3,
.split-feature h2,
.awards-feature h2,
.packages h2,
.premium-copy h2,
.bio-heading h2,
.highlights h2,
.registration-summary h2,
.registration-panel h2,
.participant-two-heading h2,
.terms-panel h2,
.cart_totals h2,
.woocommerce-checkout #order_review_heading {
  line-height: 1.04;
}

.join-section h2 {
  line-height: 0.98;
}

.package-distance span,
.package-distance small,
.race-chip-row span,
.registration-distance,
.checkout-distance,
.summary-label,
.participant-label,
.package-switcher a,
.registration-summary strong,
.package-card strong,
.price {
  line-height: 1.05;
}

.intro-copy p,
.pylos-overlap p,
.section-lead,
.split-feature p,
.awards-feature p,
.join-grid p,
.package-card p,
.premium-copy h3,
.includes,
.premium-copy li,
.premium-copy p,
.final-cta p,
.registration-summary p:not(.summary-label),
.registration-note,
.terms-panel p,
.tsiklitira-thankyou p {
  line-height: 1.22;
}

.event-button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  line-height: 1.05;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
  }

  .event-button:hover,
  .event-button:focus-visible,
  .package-card:hover,
  .registration-panel:hover,
  .highlight-grid img:hover,
  .split-feature img:hover,
  .join-grid img:hover,
  .premium-grid img:hover {
    transform: none;
  }
}
