:root {
  --gc-dark: #07150f;
  --gc-dark-2: #102219;
  --gc-green: #176b43;
  --gc-green-2: #24965b;
  --gc-lime: #d5f56f;
  --gc-sand: #f4efe4;
  --gc-cream: #fffaf0;
  --gc-white: #ffffff;
  --gc-muted: #627266;
  --gc-line: rgba(7, 21, 15, .12);
  --gc-shadow: 0 26px 80px rgba(7, 21, 15, .14);
  --gc-shadow-strong: 0 36px 100px rgba(7, 21, 15, .24);
  --gc-radius: 30px;
  --gc-radius-lg: 44px;
  --gc-max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gc-dark);
  background:
    radial-gradient(circle at 12% 0%, rgba(213,245,111,.28), transparent 34rem),
    radial-gradient(circle at 92% 12%, rgba(36,150,91,.14), transparent 32rem),
    linear-gradient(180deg, #f5f0e6 0%, #fffaf0 42%, #eef6ee 100%);
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.gc-container {
  width: min(var(--gc-max), calc(100% - 42px));
  margin-inline: auto;
}

.gc-display {
  font-family: "Outfit", "Manrope", sans-serif;
  letter-spacing: -.075em;
}

/* HEADER */

.gc-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 90;
  pointer-events: none;
}

.gc-nav {
  width: min(var(--gc-max), calc(100% - 28px));
  min-height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.78);
  backdrop-filter: blur(26px);
  box-shadow: 0 18px 60px rgba(7,21,15,.13);
  pointer-events: auto;
}

.gc-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.gc-logo-plate {
  width: 136px;
  height: 76px;
  padding: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(7,21,15,.1);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.75),
    0 14px 34px rgba(7,21,15,.13);
  overflow: hidden;
}

.gc-logo-plate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.gc-logo-plate span {
  color: var(--gc-green);
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 950;
  letter-spacing: -.08em;
}

.gc-brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.gc-brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.34rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.055em;
}

.gc-brand-line {
  font-size: .72rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .13em;
  color: rgba(7,21,15,.58);
  text-transform: uppercase;
  white-space: nowrap;
}

.gc-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.gc-menu a {
  padding: 12px 13px;
  border-radius: 999px;
  color: rgba(7,21,15,.76);
  font-size: .91rem;
  font-weight: 850;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.gc-menu a:hover,
.gc-menu a.active {
  background: rgba(23,107,67,.1);
  color: var(--gc-green);
  transform: translateY(-1px);
}

.gc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gc-lang {
  display: inline-flex;
  align-items: center;
  padding: 5px;
  border-radius: 999px;
  background: rgba(7,21,15,.06);
  border: 1px solid rgba(7,21,15,.08);
}

.gc-lang button,
.gc-mobile-lang button {
  min-width: 42px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(7,21,15,.58);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 950;
}

.gc-lang button.active,
.gc-mobile-lang button.active {
  color: #ffffff;
  background: var(--gc-dark);
  box-shadow: 0 10px 20px rgba(7,21,15,.16);
}

.gc-burger {
  display: none;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--gc-dark);
  position: relative;
  cursor: pointer;
}

.gc-burger span {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 99px;
  background: #ffffff;
  transition: top .18s ease, transform .18s ease, opacity .18s ease;
}

.gc-burger span:nth-child(1) { top: 19px; }
.gc-burger span:nth-child(2) { top: 26px; }
.gc-burger span:nth-child(3) { top: 33px; }

body.menu-open .gc-burger span:nth-child(1) {
  top: 26px;
  transform: rotate(45deg);
}

body.menu-open .gc-burger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .gc-burger span:nth-child(3) {
  top: 26px;
  transform: rotate(-45deg);
}

.gc-mobile-panel {
  display: none;
}

/* BUTTONS */

.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 14px 21px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: -.025em;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.gc-btn:hover {
  transform: translateY(-2px);
}

.gc-btn-primary {
  background: var(--gc-dark);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(7,21,15,.24);
}

.gc-btn-primary:hover {
  background: var(--gc-green);
}

.gc-btn-green {
  background: var(--gc-green);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(23,107,67,.24);
}

.gc-btn-green:hover {
  background: var(--gc-dark);
}

.gc-btn-light {
  color: var(--gc-dark);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(7,21,15,.1);
}

.gc-btn-outline {
  background: transparent;
  color: var(--gc-dark);
  border: 1px solid rgba(7,21,15,.16);
}

.gc-white-outline {
  color: #ffffff;
  border-color: rgba(255,255,255,.28);
}

/* HERO */

.gc-hero {
  min-height: 100vh;
  position: relative;
  padding: 172px 0 96px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.gc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7,21,15,.94), rgba(7,21,15,.67), rgba(7,21,15,.18)),
    url('hero-olympus-bike.jpg') center/cover no-repeat;
}

.gc-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 230px;
  z-index: -2;
  background: linear-gradient(0deg, var(--gc-sand), transparent);
}

.gc-hero-art {
  position: absolute;
  right: -80px;
  top: 160px;
  width: 42vw;
  max-width: 660px;
  min-width: 360px;
  height: 58vh;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  transform: rotate(-5deg);
  z-index: -1;
}

.gc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .56fr);
  gap: 36px;
  align-items: end;
}

.gc-kicker,
.gc-card-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 20px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(16px);
  color: #ffffff;
  font-size: .88rem;
  font-weight: 900;
}

.gc-kicker::before,
.gc-card-label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gc-lime);
  box-shadow: 0 0 0 6px rgba(213,245,111,.16);
}

.gc-card-label {
  margin-bottom: 12px;
  color: var(--gc-green);
  background: rgba(23,107,67,.1);
  border-color: rgba(23,107,67,.12);
}

.gc-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.8rem, 8.9vw, 8.9rem);
  line-height: .84;
}

.gc-hero h1 span {
  color: var(--gc-lime);
}

.gc-hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.04rem, 1.7vw, 1.32rem);
  line-height: 1.7;
  font-weight: 600;
}

.gc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.gc-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 34px;
}

.gc-hero-stat {
  min-height: 104px;
  padding: 18px;
  border-radius: 24px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(18px);
}

.gc-hero-stat strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -.05em;
}

.gc-hero-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: .84rem;
  font-weight: 850;
  line-height: 1.35;
}

.gc-quick-card {
  border-radius: 34px;
  padding: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.74);
  backdrop-filter: blur(28px);
  box-shadow: var(--gc-shadow-strong);
}

.gc-quick-card h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -.055em;
}

.gc-quick-card p {
  margin: 8px 0 18px;
  color: var(--gc-muted);
  font-size: .94rem;
  line-height: 1.55;
  font-weight: 650;
}

/* FORMS */

.gc-form {
  display: grid;
  gap: 11px;
}

.gc-field {
  display: grid;
  gap: 7px;
}

.gc-field label {
  color: rgba(7,21,15,.58);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gc-field input,
.gc-field select,
.gc-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border-radius: 17px;
  border: 1px solid rgba(7,21,15,.12);
  background: #ffffff;
  outline: 0;
  color: var(--gc-dark);
  font-weight: 700;
}

.gc-field textarea {
  min-height: 104px;
  resize: vertical;
  line-height: 1.5;
}

.gc-field input:focus,
.gc-field select:focus,
.gc-field textarea:focus {
  border-color: rgba(23,107,67,.42);
  box-shadow: 0 0 0 4px rgba(23,107,67,.1);
}

.gc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

/* SECTIONS */

.gc-section {
  padding: 104px 0;
}

.gc-section-tight {
  padding: 80px 0;
}

.gc-section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .45fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 34px;
}

.gc-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(23,107,67,.1);
  color: var(--gc-green);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 950;
}

.gc-section h2 {
  max-width: 850px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.25rem, 4.8vw, 5rem);
  line-height: .92;
  letter-spacing: -.075em;
}

.gc-section-text {
  max-width: 550px;
  margin: 0;
  color: var(--gc-muted);
  font-size: 1.04rem;
  line-height: 1.75;
  font-weight: 620;
}

/* STRIP */

.gc-strip {
  position: relative;
  z-index: 10;
  margin-top: -48px;
}

.gc-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 34px;
  background: rgba(7,21,15,.11);
  box-shadow: var(--gc-shadow);
}

.gc-strip-item {
  min-height: 154px;
  padding: 22px 18px;
  display: grid;
  align-content: center;
  gap: 10px;
  background: rgba(255,255,255,.94);
  border-right: 1px solid rgba(7,21,15,.09);
  transition: background .18s ease;
}

.gc-strip-item:last-child {
  border-right: 0;
}

.gc-strip-item:hover {
  background: #ffffff;
}

.gc-strip-item i {
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: var(--gc-green);
}

.gc-strip-item strong {
  font-size: .98rem;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.gc-strip-item span {
  color: var(--gc-muted);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.45;
}

/* HOMEPAGE ROUTE CARDS */

.gc-section-action {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.gc-home-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.gc-home-route-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 300px 1fr;
  border-radius: 38px;
  background: #ffffff;
  border: 1px solid rgba(7,21,15,.08);
  box-shadow: var(--gc-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.gc-home-route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gc-shadow-strong);
}

.gc-home-route-image {
  position: relative;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.gc-home-route-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--gc-lime);
  color: var(--gc-dark);
  font-weight: 950;
  font-size: .84rem;
}

.gc-home-route-content {
  padding: 24px;
}

.gc-route-location,
.gc-map-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--gc-green);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gc-home-route-content h3 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.95rem;
  line-height: .98;
  letter-spacing: -.06em;
}

.gc-home-route-content p {
  margin: 0 0 16px;
  color: var(--gc-muted);
  line-height: 1.6;
  font-weight: 650;
}

.gc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gc-chip {
  display: inline-flex;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(7,21,15,.06);
  color: rgba(7,21,15,.68);
  font-size: .72rem;
  font-weight: 900;
}

/* ROUTES PAGE */

.gc-route-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.gc-filter {
  border: 1px solid rgba(7,21,15,.11);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(7,21,15,.68);
  padding: 10px 13px;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 900;
}

.gc-filter:hover,
.gc-filter.active {
  background: var(--gc-dark);
  color: #ffffff;
}

.gc-routes-layout {
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.gc-route-list {
  display: grid;
  gap: 14px;
}

.gc-route-card {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 15px;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid rgba(7,21,15,.1);
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(7,21,15,.07);
  cursor: pointer;
}

.gc-route-card:hover,
.gc-route-card.active {
  border-color: rgba(23,107,67,.34);
  box-shadow: 0 22px 54px rgba(23,107,67,.15);
}

.gc-route-image {
  min-height: 150px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23,107,67,.72), rgba(7,21,15,.52)),
    url('routes/placeholder.jpg') center/cover no-repeat;
}

.gc-route-image img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.gc-route-content {
  min-width: 0;
  padding: 5px 4px 5px 0;
}

.gc-route-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.gc-route-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.32rem;
  line-height: 1.05;
  letter-spacing: -.055em;
}

.gc-price {
  flex: 0 0 auto;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(213,245,111,.78);
  color: var(--gc-dark);
  font-size: .78rem;
  font-weight: 950;
}

.gc-route-card p {
  margin: 9px 0 12px;
  color: var(--gc-muted);
  font-size: .9rem;
  line-height: 1.5;
  font-weight: 650;
}

.gc-map-panel {
  position: sticky;
  top: 132px;
  overflow: hidden;
  border-radius: 38px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--gc-shadow);
}

#routeMap {
  width: 100%;
  height: 470px;
  background: #d9e7d8;
}

.gc-map-info {
  padding: 24px;
}

.gc-map-info h3 {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: -.06em;
}

.gc-map-info p {
  margin: 0 0 18px;
  color: var(--gc-muted);
  line-height: 1.65;
  font-weight: 650;
}

.gc-map-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.gc-map-stat {
  padding: 13px 10px;
  border-radius: 17px;
  background: rgba(23,107,67,.08);
}

.gc-map-stat strong {
  display: block;
  font-size: .92rem;
}

.gc-map-stat span {
  display: block;
  margin-top: 5px;
  color: var(--gc-muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* BIKES */

.gc-bikes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gc-bike-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 38px;
  color: #ffffff;
  box-shadow: var(--gc-shadow);
  background-size: cover;
  background-position: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.gc-bike-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gc-shadow-strong);
}

.gc-bike-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(213,245,111,.22), transparent 18rem);
  pointer-events: none;
}

.gc-bike-content {
  position: relative;
  z-index: 2;
}

.gc-bike-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  line-height: .98;
  letter-spacing: -.06em;
}

.gc-bike-card p {
  margin: 10px 0 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  font-weight: 650;
}

.gc-bike-price {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--gc-lime);
  color: var(--gc-dark);
  font-weight: 950;
}

/* EXPERIENCES */

.gc-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gc-experience-card {
  min-height: 238px;
  padding: 24px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(7,21,15,.09);
  box-shadow: 0 12px 42px rgba(7,21,15,.07);
  transition: transform .18s ease, box-shadow .18s ease;
}

.gc-experience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(7,21,15,.11);
}

.gc-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(23,107,67,.1);
  color: var(--gc-green);
  font-weight: 950;
}

.gc-experience-card h3 {
  margin: 22px 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -.055em;
}

.gc-experience-card p {
  margin: 0;
  color: var(--gc-muted);
  line-height: 1.6;
  font-weight: 650;
}

/* PREMIUM PANEL */

.gc-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.gc-dark-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 44px;
  background:
    radial-gradient(circle at top right, rgba(213,245,111,.26), transparent 24rem),
    var(--gc-dark);
  color: #ffffff;
  box-shadow: var(--gc-shadow-strong);
}

.gc-dark-panel .gc-eyebrow,
.gc-booking-box .gc-eyebrow {
  background: rgba(213,245,111,.14);
  color: var(--gc-lime);
}

.gc-dark-panel h2,
.gc-booking-box h2 {
  color: #ffffff;
}

.gc-dark-panel .gc-section-text,
.gc-booking-box .gc-section-text {
  color: rgba(255,255,255,.74);
}

.gc-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.gc-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px;
  border-radius: 21px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.gc-feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(213,245,111,.16);
  color: var(--gc-lime);
  font-weight: 950;
}

.gc-feature h3 {
  margin: 0 0 5px;
  font-family: "Outfit", sans-serif;
  font-size: 1.16rem;
  letter-spacing: -.04em;
}

.gc-feature p {
  margin: 0;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  font-weight: 650;
}

.gc-photo-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 16px;
}

.gc-photo-main,
.gc-photo-small {
  min-height: 520px;
  border-radius: 36px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--gc-shadow);
}

.gc-photo-main {
  background-image: url('experience/olympus-ride.jpg');
}

.gc-photo-stack {
  display: grid;
  gap: 16px;
}

.gc-photo-small {
  min-height: 252px;
  background-image: url('experience/group-ride.jpg');
}

.gc-photo-small:nth-child(2) {
  background-image: url('experience/sea-ride.jpg');
}

/* BOOKING */

.gc-booking-box {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 48px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7,21,15,.94), rgba(7,21,15,.68)),
    url('booking-bg.jpg') center/cover no-repeat;
  box-shadow: var(--gc-shadow-strong);
}

/* REVIEWS / FAQ */

.gc-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gc-review-card {
  padding: 26px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(7,21,15,.09);
  box-shadow: 0 12px 40px rgba(7,21,15,.07);
}

.gc-stars {
  color: var(--gc-green);
  letter-spacing: .08em;
  font-weight: 950;
  margin-bottom: 16px;
}

.gc-review-card p {
  margin: 0 0 20px;
  color: var(--gc-dark);
  line-height: 1.65;
  font-weight: 700;
}

.gc-review-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
}

.gc-review-card span {
  display: block;
  margin-top: 3px;
  color: var(--gc-muted);
  font-size: .88rem;
  font-weight: 700;
}

.gc-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.gc-faq-list {
  display: grid;
  gap: 10px;
}

details.gc-faq {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(7,21,15,.09);
  box-shadow: 0 10px 30px rgba(7,21,15,.055);
}

details.gc-faq summary {
  cursor: pointer;
  padding: 19px 22px;
  font-weight: 950;
  letter-spacing: -.025em;
  list-style: none;
}

details.gc-faq summary::-webkit-details-marker {
  display: none;
}

details.gc-faq p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--gc-muted);
  line-height: 1.65;
  font-weight: 650;
}

/* CONTACT */

.gc-contact-card {
  padding: 38px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(213,245,111,.24), transparent 20rem),
    #ffffff;
  box-shadow: var(--gc-shadow);
  border: 1px solid rgba(7,21,15,.08);
}

.gc-contact-card h3 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  line-height: .95;
  letter-spacing: -.065em;
}

.gc-contact-card p {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--gc-muted);
  line-height: 1.65;
  font-weight: 650;
}

/* FOOTER */

.gc-footer {
  padding: 70px 0 30px;
  background:
    radial-gradient(circle at top left, rgba(213,245,111,.18), transparent 26rem),
    var(--gc-dark);
  color: #ffffff;
}

.gc-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.gc-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gc-footer-logo {
  width: 138px;
  height: 78px;
  padding: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #ffffff;
  overflow: hidden;
}

.gc-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.gc-footer-logo span {
  color: var(--gc-green);
  font-family: "Outfit", sans-serif;
  font-weight: 950;
  font-size: 1.6rem;
}

.gc-footer-brand strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -.055em;
}

.gc-footer-brand p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.68);
  line-height: 1.5;
  font-weight: 650;
}

.gc-footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gc-footer-col {
  display: grid;
  gap: 10px;
}

.gc-footer-col span {
  color: var(--gc-lime);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gc-footer-col a {
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.gc-footer-col a:hover {
  color: #ffffff;
}

.gc-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.56);
  font-size: .9rem;
  font-weight: 650;
}

.gc-footer-bottom a {
  color: var(--gc-lime);
  font-weight: 950;
}

.gc-footer-bottom a:hover {
  color: #ffffff;
}

/* PAGE STYLES */

.gc-page-hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  padding: 180px 0 90px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7,21,15,.94), rgba(7,21,15,.62), rgba(7,21,15,.2)),
    url('hero-olympus-bike.jpg') center/cover no-repeat;
}

.gc-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--gc-sand), transparent);
}

.gc-page-hero .gc-container {
  position: relative;
  z-index: 2;
}

.gc-page-hero .gc-eyebrow {
  color: var(--gc-lime);
  background: rgba(213,245,111,.14);
}

.gc-page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: .84;
}

.gc-page-hero p {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
  line-height: 1.7;
  font-weight: 650;
}

.gc-page-hero-bikes {
  background:
    linear-gradient(90deg, rgba(7,21,15,.94), rgba(7,21,15,.62), rgba(7,21,15,.2)),
    url('bikes/ebike.jpg') center/cover no-repeat;
}

.gc-page-hero-experiences {
  background:
    linear-gradient(90deg, rgba(7,21,15,.94), rgba(7,21,15,.62), rgba(7,21,15,.2)),
    url('experience/olympus-ride.jpg') center/cover no-repeat;
}

.gc-page-hero-booking {
  background:
    linear-gradient(90deg, rgba(7,21,15,.94), rgba(7,21,15,.62), rgba(7,21,15,.2)),
    url('booking-bg.jpg') center/cover no-repeat;
}

.gc-page-hero-contact {
  background:
    linear-gradient(90deg, rgba(7,21,15,.94), rgba(7,21,15,.62), rgba(7,21,15,.2)),
    url('experience/sea-ride.jpg') center/cover no-repeat;
}

.gc-detail-grid,
.gc-bike-page-grid,
.gc-experience-page-grid {
  display: grid;
  gap: 18px;
}

.gc-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-detail-card {
  padding: 28px;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid rgba(7,21,15,.08);
  box-shadow: 0 14px 42px rgba(7,21,15,.07);
}

.gc-detail-card h3 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  line-height: .98;
  letter-spacing: -.06em;
}

.gc-detail-card p {
  color: var(--gc-muted);
  line-height: 1.65;
  font-weight: 650;
}

.gc-detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 20px 0;
}

.gc-detail-columns strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
}

.gc-detail-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--gc-muted);
  line-height: 1.7;
  font-weight: 650;
}

.gc-bike-large-card,
.gc-experience-large-card {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 42px;
  background: #ffffff;
  border: 1px solid rgba(7,21,15,.08);
  box-shadow: var(--gc-shadow);
}

.gc-bike-large-image,
.gc-experience-large-image {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.gc-bike-large-content,
.gc-experience-large-content {
  padding: clamp(28px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.gc-bike-large-content h3,
.gc-experience-large-content h3 {
  margin: 16px 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .9;
  letter-spacing: -.075em;
}

.gc-bike-large-content p,
.gc-experience-large-content p {
  color: var(--gc-muted);
  line-height: 1.7;
  font-weight: 650;
}

.gc-bike-large-content .gc-chip-row,
.gc-experience-large-content .gc-chip-row {
  margin: 12px 0 24px;
}

.gc-best-for {
  padding: 16px;
  border-radius: 20px;
  background: rgba(23,107,67,.08);
  margin: 10px 0 16px;
}

.gc-best-for strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gc-green);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gc-best-for span {
  display: block;
  color: var(--gc-muted);
  line-height: 1.55;
  font-weight: 650;
}

.gc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.gc-process-card {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.gc-process-grid-light .gc-process-card {
  background: #ffffff;
  border: 1px solid rgba(7,21,15,.08);
  box-shadow: 0 12px 36px rgba(7,21,15,.06);
}

.gc-process-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: rgba(213,245,111,.16);
  color: var(--gc-lime);
  font-weight: 950;
}

.gc-process-grid-light .gc-process-card span {
  background: rgba(23,107,67,.1);
  color: var(--gc-green);
}

.gc-process-card h3 {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.gc-process-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.55;
  font-weight: 650;
}

.gc-process-grid-light .gc-process-card p {
  color: var(--gc-muted);
}

.gc-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.gc-check {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  color: #ffffff;
  font-weight: 800;
}

.gc-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gc-lime);
}

.gc-contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gc-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: 22px;
  align-items: start;
}

.gc-info-panel {
  padding: 34px;
  border-radius: 40px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(213,245,111,.22), transparent 20rem),
    var(--gc-dark);
  box-shadow: var(--gc-shadow);
}

.gc-info-panel .gc-eyebrow {
  color: var(--gc-lime);
  background: rgba(213,245,111,.14);
}

.gc-info-panel h2 {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: .9;
  letter-spacing: -.075em;
}

.gc-info-panel p {
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  font-weight: 650;
}

.gc-info-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.gc-info-item {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.gc-info-item span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255,255,255,.58);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gc-info-item strong {
  display: block;
  color: #ffffff;
  line-height: 1.35;
}

/* TOAST */

.gc-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 200;
  transform: translateX(-50%) translateY(20px);
  padding: 13px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--gc-dark);
  box-shadow: var(--gc-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  font-weight: 850;
  font-size: .92rem;
}

.gc-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .gc-menu {
    display: none;
  }

  .gc-burger {
    display: inline-block;
  }

  .gc-mobile-panel {
    display: grid;
    position: fixed;
    inset: 0;
    z-index: 75;
    padding: 132px 18px 18px;
    background: rgba(7,21,15,.78);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  body.menu-open .gc-mobile-panel {
    opacity: 1;
    pointer-events: auto;
  }

  .gc-mobile-menu {
    align-self: start;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--gc-shadow);
  }

  .gc-mobile-menu a {
    padding: 15px;
    border-radius: 18px;
    background: rgba(7,21,15,.055);
    font-weight: 950;
  }

  .gc-mobile-book {
    color: #ffffff;
    background: var(--gc-green) !important;
    text-align: center;
  }

  .gc-mobile-lang {
    display: inline-flex;
    width: fit-content;
    padding: 5px;
    border-radius: 999px;
    background: rgba(7,21,15,.06);
  }

  .gc-hero-grid,
  .gc-routes-layout,
  .gc-split,
  .gc-booking-grid,
  .gc-contact-layout {
    grid-template-columns: 1fr;
  }

  .gc-map-panel {
    position: relative;
    top: auto;
  }

  .gc-strip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gc-home-route-grid,
  .gc-experience-grid,
  .gc-bikes-grid,
  .gc-review-grid,
  .gc-faq-grid,
  .gc-footer-main,
  .gc-footer-columns,
  .gc-detail-grid,
  .gc-contact-choice-grid,
  .gc-process-grid {
    grid-template-columns: 1fr;
  }

  .gc-bike-card {
    min-height: 370px;
  }

  .gc-bike-large-card,
  .gc-experience-large-card {
    grid-template-columns: 1fr;
  }

  .gc-bike-large-image,
  .gc-experience-large-image {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .gc-container {
    width: min(100% - 26px, var(--gc-max));
  }

  html {
    scroll-padding-top: 100px;
  }

  .gc-header {
    top: 10px;
  }

  .gc-nav {
    width: calc(100% - 18px);
    min-height: 82px;
    padding: 9px 10px;
  }

  .gc-logo-plate {
    width: 112px;
    height: 64px;
    padding: 7px;
  }

  .gc-brand-name {
    font-size: 1.08rem;
  }

  .gc-brand-line {
    font-size: .58rem;
  }

  .gc-actions .gc-header-cta,
  .gc-actions .gc-lang {
    display: none;
  }

  .gc-burger {
    width: 50px;
    height: 50px;
  }

  .gc-hero {
    min-height: auto;
    padding: 130px 0 66px;
  }

  .gc-hero::before {
    background:
      linear-gradient(180deg, rgba(7,21,15,.92), rgba(7,21,15,.68), rgba(7,21,15,.28)),
      url('hero-olympus-bike.jpg') center/cover no-repeat;
  }

  .gc-hero-art {
    display: none;
  }

  .gc-hero h1 {
    font-size: clamp(3.35rem, 16vw, 5.65rem);
  }

  .gc-hero-lead {
    font-size: 1rem;
  }

  .gc-hero-actions {
    display: grid;
  }

  .gc-btn {
    width: 100%;
  }

  .gc-hero-meta {
    grid-template-columns: 1fr;
  }

  .gc-form-row,
  .gc-detail-columns,
  .gc-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .gc-section {
    padding: 76px 0;
  }

  .gc-section-tight {
    padding: 62px 0;
  }

  .gc-section-head {
    grid-template-columns: 1fr;
  }

  .gc-section h2 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .gc-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gc-strip-item {
    min-height: 135px;
  }

  .gc-home-route-card {
    grid-template-rows: 260px 1fr;
  }

  .gc-home-route-image {
    min-height: 260px;
  }

  .gc-route-card {
    grid-template-columns: 1fr;
  }

  .gc-route-image,
  .gc-route-image img {
    min-height: 210px;
  }

  #routeMap {
    height: 350px;
  }

  .gc-map-stats {
    grid-template-columns: 1fr 1fr;
  }

  .gc-photo-grid {
    grid-template-columns: 1fr;
  }

  .gc-photo-main,
  .gc-photo-small {
    min-height: 270px;
  }

  .gc-footer-brand {
    align-items: flex-start;
  }

  .gc-footer-logo {
    width: 118px;
    height: 68px;
    padding: 7px;
  }

  .gc-footer-bottom {
    display: grid;
    gap: 8px;
  }

  .gc-page-hero {
    min-height: auto;
    padding: 138px 0 70px;
  }

  .gc-page-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.3rem);
  }
}

@media (max-width: 460px) {
  .gc-brand-copy {
    display: none;
  }

  .gc-logo-plate {
    width: 104px;
    height: 60px;
  }

  .gc-strip-grid {
    grid-template-columns: 1fr;
  }

  .gc-map-stats {
    grid-template-columns: 1fr;
  }

  .gc-booking-box,
  .gc-dark-panel,
  .gc-contact-card {
    border-radius: 32px;
  }

  .gc-home-route-card {
    grid-template-rows: 240px 1fr;
  }

  .gc-home-route-image {
    min-height: 240px;
  }

  .gc-footer-logo {
    width: 112px;
    height: 64px;
  }
}