:root {
  --ink: #02111F;
  --ink-2: #0a2236;
  --muted: #647084;
  --line: #d8dde5;
  --paper: #f7f8fa;
  --white: #ffffff;
  --gold: #F47A00;
  --gold-2: #F47A00;
  --gold-dark: #F47A00;
  --focus: #2b78c5;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.95;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 28px clamp(22px, 5vw, 72px);
  color: var(--white);
}

.legal-page {
  background: var(--white);
}

.legal-page .site-header {
  position: static;
  background: var(--ink);
}

.legal-page .main-nav a::after {
  display: none;
}

.legal-document {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 22px 80px;
}

.legal-document h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.legal-lead {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-document section {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.legal-document h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.legal-document p {
  margin: 0 0 12px;
}

.consent a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-page {
  min-height: 100vh;
  background: var(--paper);
}

.admin-shell {
  min-height: 100vh;
  padding: 32px;
}

.admin-login {
  display: grid;
  gap: 20px;
  width: min(420px, 100%);
  margin: 8vh auto;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 34px;
}

.admin-login img {
  width: 154px;
}

.admin-login h1,
.admin-dashboard h1 {
  margin: 0;
  text-transform: uppercase;
}

.admin-login form {
  display: grid;
  gap: 16px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 24px;
}

.admin-topbar .button-ghost {
  width: fit-content;
}

.admin-tabs {
  display: flex;
  gap: 10px;
  margin: 0 0 20px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.admin-tab {
  appearance: none;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 14px 18px 12px;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-tab:hover,
.admin-tab.is-active {
  color: var(--ink);
}

.admin-tab.is-active {
  border-bottom-color: var(--gold);
}

.admin-panel {
  display: block;
}

.admin-panel[hidden] {
  display: none;
}

.admin-panel > .admin-section-title:first-child {
  margin-top: 0;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-card {
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
}

.admin-card h2 {
  margin: 0 0 16px;
  text-transform: uppercase;
}

.admin-block-form {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.admin-block-form .button {
  width: 100%;
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) repeat(4, minmax(145px, 1fr)) minmax(220px, 1.15fr) auto;
  gap: 12px;
  align-items: end;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.admin-filters label {
  display: grid;
  gap: 6px;
}

.admin-filters span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-filter-reset {
  min-height: 48px;
  border-color: var(--line);
  color: var(--ink);
}

.admin-blocks-wrap {
  margin-bottom: 24px;
}

.admin-section-title {
  margin: 28px 0 14px;
  color: var(--ink);
  text-transform: uppercase;
}

.admin-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: #eef1f5;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.admin-table a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
}

.admin-status {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(29, 107, 65, 0.12);
  color: #1d6b41;
  padding: 5px 9px;
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-payment {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(244, 122, 0, 0.16);
  color: var(--gold-dark);
  padding: 5px 9px;
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-payment.is-paid {
  background: rgba(29, 107, 65, 0.12);
  color: #1d6b41;
}

.is-cancelled {
  color: var(--muted);
}

.is-cancelled .admin-status {
  background: rgba(100, 112, 132, 0.14);
  color: var(--muted);
}

.admin-cancel {
  display: block;
  border: 1px solid #b83232;
  border-radius: 6px;
  background: #fff;
  color: #b83232;
  padding: 9px 12px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-cancel-reason {
  display: block;
  width: min(190px, 100%);
  min-height: 38px;
  margin: 8px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-paid {
  display: block;
  margin-bottom: 8px;
  border: 1px solid #1d6b41;
  border-radius: 6px;
  background: #fff;
  color: #1d6b41;
  padding: 9px 12px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-cancel:disabled,
.admin-paid:disabled,
.admin-cancel-reason:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  display: block;
  width: clamp(136px, 15vw, 184px);
  height: auto;
}

.site-header .brand img {
  width: clamp(96px, 9vw, 126px);
}

.site-footer .brand img {
  width: clamp(150px, 16vw, 196px);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 58px);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a:first-child::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold-2);
  content: "";
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 24px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.button svg {
  width: 22px;
  height: 22px;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
  color: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: 615px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-vistula-ride.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 17, 31, 0.94) 0%, rgba(2, 17, 31, 0.72) 36%, rgba(2, 17, 31, 0.2) 68%, rgba(2, 17, 31, 0.55) 100%),
    linear-gradient(180deg, rgba(2, 17, 31, 0.74) 0%, rgba(2, 17, 31, 0.1) 48%, rgba(2, 17, 31, 0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 44px));
  padding: 178px 0 82px clamp(22px, 5.7vw, 72px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 5.1rem);
  font-weight: 950;
  line-height: 1.04;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--gold-2);
}

.hero-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 24px 0 30px;
  font-size: clamp(1.03rem, 2vw, 1.38rem);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--ink);
  color: var(--white);
  padding: 28px clamp(22px, 6vw, 96px);
}

.feature-strip article {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 116px;
  padding: 0 24px;
  text-align: center;
}

.feature-strip article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.feature-strip svg {
  width: 44px;
  height: 44px;
  color: var(--gold-2);
}

.feature-strip h2 {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.feature-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.local-seo {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 46px clamp(22px, 6vw, 84px) 42px;
  background: var(--white);
  color: var(--ink);
}

.local-seo h2 {
  max-width: 980px;
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.local-seo p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.local-seo ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-seo li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(244, 122, 0, 0.24);
  border-radius: 6px;
  background: rgba(244, 122, 0, 0.07);
  padding: 8px 11px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.local-seo li::before {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.section-heading {
  text-align: center;
}

.section-heading h2,
.booking-panel h2,
.bike-panel h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.15;
  text-transform: uppercase;
}

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

.how {
  padding: 52px clamp(22px, 6vw, 96px) 36px;
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 6vw, 82px);
  max-width: 1120px;
  margin: 30px auto 0;
}

.steps article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.steps article:not(:last-child)::after {
  position: absolute;
  top: 43px;
  right: calc(-1 * clamp(52px, 6vw, 82px));
  width: clamp(64px, 10vw, 150px);
  height: 1px;
  background: var(--line);
  content: "";
}

.step-icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--ink);
}

.step-icon svg {
  width: 40px;
  height: 40px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.steps h3 {
  margin: 10px 0 5px;
  font-size: 1rem;
  text-transform: uppercase;
}

.steps p {
  max-width: 260px;
  margin: 0;
}

.reservation-shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.bike-panel {
  display: grid;
  align-content: start;
  min-height: 630px;
  padding: 52px clamp(24px, 6vw, 82px);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.bike-panel h2 {
  margin-bottom: 12px;
}

.bike-model {
  width: min(460px, 100%);
  margin-bottom: 20px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
}

.bike-photo {
  width: min(440px, 100%);
  aspect-ratio: 1.45;
  margin: 10px auto 22px;
  border-radius: 8px;
  background: url("assets/varun-bike-product.png") center / cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.bike-panel h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
}

.bike-panel p:not(.eyebrow) {
  max-width: 360px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
}

.bike-specs {
  display: grid;
  gap: 10px;
  width: min(420px, 100%);
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.bike-specs li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.bike-specs li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-2);
  content: "";
}

.bike-details-button {
  justify-self: center;
  width: min(320px, 100%);
  margin-top: 30px;
}

.booking-panel {
  padding: 52px clamp(22px, 5vw, 70px);
}

.booking-form {
  scroll-margin-top: 24px;
}

.booking-form {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-option {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 140px;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(2, 17, 31, 0.08);
  text-align: center;
  cursor: pointer;
}

.package-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.package-option span:not(.badge) {
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-option strong {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
}

.package-option:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 14px 38px rgba(244, 122, 0, 0.2);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 20px);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
  color: var(--white);
  padding: 6px 10px;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

label > span {
  font-size: 0.87rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(43, 120, 197, 0.38);
  outline-offset: 3px;
}

.document-upload {
  font-weight: 800;
}

.availability-message {
  margin: -2px 0 0;
  border-left: 4px solid var(--gold);
  background: rgba(2, 17, 31, 0.05);
  color: var(--ink);
  padding: 12px 14px;
  font-weight: 800;
}

.document-upload small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.payment-note {
  border: 1px solid rgba(244, 122, 0, 0.38);
  border-radius: 8px;
  background: rgba(244, 122, 0, 0.1);
  padding: 16px 18px;
}

.payment-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.payment-note p {
  margin: 0;
  color: var(--ink);
}

.booking-summary {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.booking-summary span {
  font-size: 0.92rem;
}

.booking-summary strong {
  color: var(--gold-dark);
  font-size: 1.35rem;
}

.booking-summary .summary-total {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.booking-summary .summary-total strong {
  font-size: 2rem;
}

.booking-summary .summary-note {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.booking-summary .summary-note span {
  color: var(--muted);
}

.booking-summary .summary-note strong {
  font-size: 1rem;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500;
}

.consent input {
  min-height: auto;
  margin-top: 3px;
}

.submit-button {
  width: min(360px, 100%);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: #1d6b41;
  font-weight: 800;
}

.product-page {
  background: var(--white);
}

.product-page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
}

.product-page-hero-bg,
.product-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.product-page-hero-bg {
  background: url("assets/varun-action-water.webp") center / cover;
  transform: scale(1.02);
}

.product-page-hero::after {
  background:
    linear-gradient(90deg, rgba(2, 17, 31, 0.92), rgba(2, 17, 31, 0.42) 58%, rgba(2, 17, 31, 0.16)),
    linear-gradient(0deg, rgba(2, 17, 31, 0.8), rgba(2, 17, 31, 0.1) 42%);
}

.product-page-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  padding: 180px clamp(22px, 6vw, 96px) 76px;
}

.product-page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.product-page-hero-content > p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.product-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin: 34px 0 28px;
}

.product-hero-metrics div {
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(2, 17, 31, 0.42);
  padding: 16px;
}

.product-hero-metrics span,
.product-hero-metrics strong {
  display: block;
}

.product-hero-metrics span {
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: clamp(1.08rem, 2.2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.product-hero-metrics strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.product-story {
  background: var(--white);
}

.product-story-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1fr);
  align-items: stretch;
  min-height: 560px;
  border-top: 1px solid var(--line);
}

.product-story-copy {
  display: grid;
  align-content: center;
  padding: 64px clamp(22px, 6vw, 96px);
}

.product-story-copy h2,
.product-spec-copy h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.product-story-copy p:not(.eyebrow),
.product-spec-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-story-media {
  min-height: 420px;
  margin: 0;
}

.product-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-checklist {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.product-checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 900;
}

.product-checklist li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.product-spec-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1fr);
  gap: 48px;
  padding: 76px clamp(22px, 6vw, 96px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.product-spec-table {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-spec-table div {
  display: grid;
  grid-template-columns: minmax(130px, 0.44fr) 1fr;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.product-spec-table div:last-child {
  border-bottom: 0;
}

.product-spec-table dt {
  color: var(--muted);
  font-weight: 800;
}

.product-spec-table dd {
  margin: 0;
  font-weight: 800;
}

.location-map {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(420px, 1fr);
  gap: 28px;
  min-height: auto;
  padding: 56px clamp(22px, 6vw, 96px);
  background: var(--paper);
  color: var(--white);
  border-top: 1px solid var(--line);
}

.location-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 390px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 34, 54, 0.96), rgba(2, 17, 31, 1));
  padding: 42px;
  box-shadow: 0 18px 44px rgba(2, 17, 31, 0.14);
}

.location-copy h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.location-copy p:not(.eyebrow) {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.location-copy .button {
  width: fit-content;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(2, 17, 31, 0.12);
}

.location-map iframe[hidden] {
  display: none;
}

.map-consent {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 34px;
  box-shadow: 0 18px 44px rgba(2, 17, 31, 0.12);
}

.map-consent[hidden] {
  display: none;
}

.map-consent strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.map-consent p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 44px;
  padding: 40px clamp(22px, 6vw, 96px) 24px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 0.96rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--white);
  font-weight: 800;
}

.footer-social-link svg {
  width: 26px;
  height: 26px;
  color: var(--white);
  stroke-width: 1.25;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  grid-column: 2 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 18px;
}

.footer-bottom p:last-child {
  display: flex;
  gap: 34px;
}

.footer-link-button {
  appearance: none;
  display: block;
  margin: 0 0 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  padding: 0;
  font: inherit;
  text-align: left;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-consent-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  width: min(1080px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(2, 17, 31, 0.2);
  padding: 20px;
  pointer-events: auto;
}

.cookie-copy h2 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.cookie-copy p {
  margin: 0 0 8px;
  color: var(--muted);
}

.cookie-copy a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-consent .button,
.cookie-modal .button {
  min-height: 44px;
  padding: 0 18px;
}

.cookie-consent .button-ghost,
.cookie-modal .button-ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  backdrop-filter: none;
}

.cookie-consent .cookie-reject,
.cookie-modal .cookie-reject {
  border-color: #c84b44;
  color: #9f2d27;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(2, 17, 31, 0.58);
  padding: 20px;
}

.cookie-modal-panel {
  width: min(620px, 100%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 26px;
  box-shadow: 0 30px 70px rgba(2, 17, 31, 0.3);
}

.cookie-modal-panel h2 {
  margin: 0 0 8px;
  text-transform: uppercase;
}

.cookie-modal-panel > p {
  margin: 0 0 18px;
  color: var(--muted);
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.cookie-option strong,
.cookie-option span {
  display: block;
}

.cookie-option span {
  margin-top: 4px;
  color: var(--muted);
}

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--gold-dark);
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    gap: 18px;
    background: var(--ink);
  }

  .site-header .brand {
    justify-self: center;
  }

  .main-nav,
  .header-cta {
    justify-self: center;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(100%, 620px);
    gap: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 72px;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }

  .local-seo {
    grid-template-columns: 1fr;
  }

  .feature-strip article:nth-child(3) {
    border-left: 0;
  }

  .location-map {
    grid-template-columns: 1fr;
  }

  .product-story-row,
  .product-spec-section {
    grid-template-columns: 1fr;
  }

  .admin-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page-hero {
    min-height: 660px;
  }

  .product-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-story-row-reverse .product-story-media {
    order: 2;
  }

  .product-story-row-reverse .product-story-copy {
    order: 1;
  }

  .reservation-shell {
    grid-template-columns: 1fr;
  }

  .bike-panel {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 136px;
  }

  .site-header .brand img {
    width: 104px;
  }

  .local-seo {
    padding: 36px 22px 34px;
  }

  .local-seo h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .local-seo li {
    padding: 7px 9px;
    font-size: 0.8rem;
  }

  .main-nav {
    font-size: 0.74rem;
  }

  .admin-shell {
    padding: 18px;
  }

  .admin-topbar {
    display: grid;
  }

  .admin-block-form {
    grid-template-columns: 1fr;
  }

  .admin-filters {
    grid-template-columns: 1fr;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(2, 17, 31, 0.94), rgba(2, 17, 31, 0.68));
  }

  .hero-content {
    width: 100%;
    padding: 70px 22px 68px;
  }

  .hero h1 {
    font-size: clamp(2.42rem, 13vw, 3.2rem);
  }

  .button {
    width: 100%;
  }

  .feature-strip,
  .local-seo,
  .steps,
  .packages,
  .form-grid,
  .product-hero-metrics,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-page-hero {
    min-height: 720px;
  }

  .product-page-hero-content {
    padding: 150px 22px 54px;
  }

  .product-story-copy,
  .product-spec-section {
    padding: 48px 22px;
  }

  .product-story-media,
  .product-story-media img {
    min-height: 360px;
  }

  .product-spec-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .feature-strip article {
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 22px;
  }

  .feature-strip article:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .location-copy {
    padding-right: 22px;
    padding-left: 22px;
  }

  .location-copy .button {
    width: 100%;
  }

  .steps article:not(:last-child)::after {
    display: none;
  }

  .booking-panel,
  .bike-panel,
  .how {
    padding-right: 22px;
    padding-left: 22px;
  }

  .package-option {
    min-height: 116px;
  }

  .footer-bottom,
  .footer-bottom p:last-child {
    display: grid;
    gap: 8px;
  }

  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-consent-inner {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .cookie-actions,
  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent .button,
  .cookie-modal .button {
    width: 100%;
  }

  .cookie-modal-panel {
    padding: 20px;
  }
}
