/* ==========================================================================
   Bob's Bike Shop — bobsbikeshop.eu
   Static site, no build step, no third-party requests.
   Fonts: Oswald + Inter (SIL Open Font License 1.1), self-hosted in assets/fonts/.
   ========================================================================== */

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/oswald-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------- tokens -- */
:root {
  --asphalt:   #17181c;
  --panel:     #1e1f25;
  --panel-2:   #262832;
  --line:      rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);

  --text:      #eeeae4;
  --muted:     #a5a29c;
  --dim:       #949188;

  --accent:     #00a8e8;   /* brand cyan, taken from the logo */
  --accent-hi:  #4ec8f7;
  --accent-dim: rgba(0, 168, 232, 0.15);
  --open:      #5fc47f;
  --closed:    #d9756b;

  --display: 'Oswald', 'Haettenschweiler', 'Arial Narrow', 'Impact', sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gut: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 4px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--asphalt);
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-hi); }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
  text-wrap: balance;
  /* A headline never shows a hyphen. Automatic hyphenation split ordinary
     English words ("motor-cycle"), so it is off; long German compounds wrap
     on overflow-wrap instead, which breaks without printing a hyphen. */
  overflow-wrap: break-word;
  hyphens: manual;
}
h1 { font-size: clamp(2rem, 7.2vw, 5.1rem); }
h2 { font-size: clamp(1.65rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); letter-spacing: 0.03em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.lede { font-size: clamp(1.06rem, 1.9vw, 1.28rem); color: var(--muted); max-width: 60ch; }
/* Keeps a name like Harley-Davidson whole: the hyphen in it belongs to the
   name, so a line must never break there. */
.nobr { white-space: nowrap; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #17181c; padding: 0.7rem 1.1rem; font-weight: 600;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------------------------------------------------------------- kicker -- */
.kicker {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.kicker::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--accent);
  flex: none;
}

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.82rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #16171a; }
.btn--primary:hover { background: var(--accent-hi); color: #16171a; }
.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.btn--sm { padding: 0.6rem 1.05rem; font-size: 0.86rem; }
.btn--block { width: 100%; justify-content: center; }
.btn svg { width: 1em; height: 1em; flex: none; }

/* ---------------------------------------------------------------- header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 24, 28, 0.86);
  backdrop-filter: blur(11px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.brand img { height: 38px; width: auto; }
@media (max-width: 600px) { .brand img { height: 32px; } }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0.72rem;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav a:hover { color: var(--accent); background: var(--accent-dim); }
.nav a[aria-current="page"] { color: var(--accent); }
.nav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }

.header-side { display: flex; align-items: center; gap: 0.55rem; }
.header-cta { margin-left: 0.1rem; }

/* Language switcher — sits top right at every width, as it is the one control
   people hunt for when the site guessed wrong. */
.langswitch {
  display: flex;
  gap: 1px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}
.langswitch a {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1;
  padding: 0.42rem 0.5rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 2px;
  transition: color 0.18s ease, background-color 0.18s ease;
}
.langswitch a:hover { color: var(--accent); background: var(--accent-dim); }
.langswitch a[aria-current="true"] { background: var(--accent); color: #16171a; }
@media (max-width: 420px) {
  .langswitch a { padding: 0.4rem 0.34rem; font-size: 0.72rem; }
}

/* The nav carries its own CTA for the mobile menu; on desktop .header-cta is the one shown. */
@media (min-width: 901px) {
  .nav > .btn { display: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .header-side { order: 2; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem var(--gut) 1.3rem;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }
  .nav[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 0.85rem 0.2rem; font-size: 1.12rem; border-bottom: 1px solid var(--line-soft); }
  .nav a[aria-current="page"]::after { display: none; }
  .nav .btn { margin-top: 1rem; justify-content: center; }
}

/* ------------------------------------------------------------ open badge -- */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 0, 0, 0.25);
}
.open-badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dim);
  flex: none;
}
.open-badge[data-state="open"] { color: var(--text); border-color: rgba(95, 196, 127, 0.4); }
.open-badge[data-state="open"] .open-badge__dot {
  background: var(--open);
  box-shadow: 0 0 0 4px rgba(95, 196, 127, 0.16);
}
.open-badge[data-state="closed"] .open-badge__dot { background: var(--closed); }

/* ------------------------------------------------------------------ hero -- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
/* Media box is oversized so parallax translation never exposes an edge. */
.hero__media { position: absolute; inset: -14% 0; z-index: -2; }
.hero__media img,
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero--video { min-height: min(86vh, 800px); display: flex; align-items: center; }
.hero--video .hero__inner { padding-block: clamp(3.5rem, 10vw, 6rem); }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block; width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollcue 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollcue {
  0%, 100% { transform: scaleY(0.35); opacity: 0.35; }
  50%      { transform: scaleY(1);    opacity: 1; }
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(23,24,28,0.72) 0%, rgba(23,24,28,0.55) 42%, rgba(23,24,28,0.97) 100%),
    linear-gradient(90deg, rgba(23,24,28,0.85) 0%, rgba(23,24,28,0.15) 75%);
}
.hero__inner {
  padding-block: clamp(4.5rem, 15vw, 9.5rem);
  max-width: 44rem;
}
.hero h1 { margin-bottom: 0.35em; }
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero__sub { font-size: clamp(1.05rem, 2.1vw, 1.3rem); color: #d6d2cc; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; align-items: center; }

.hero--page .hero__inner { padding-block: clamp(3rem, 9vw, 5.5rem); max-width: 52rem; }
.hero--page h1 { font-size: clamp(2.2rem, 6vw, 4rem); }

/* -------------------------------------------------------------- usp band -- */
.usp {
  background: var(--panel);
  border-block: 1px solid var(--line-soft);
}
.usp__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line-soft);
}
.usp__item {
  background: var(--panel);
  padding: 1.6rem clamp(1rem, 2.5vw, 1.9rem);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.usp__item svg { width: 26px; height: 26px; color: var(--accent); flex: none; margin-top: 2px; }
.usp__item h3 { font-size: 1.02rem; margin-bottom: 0.25rem; letter-spacing: 0.05em; }
.usp__item p { font-size: 0.92rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* --------------------------------------------------------------- section -- */
.section { padding-block: clamp(3.6rem, 9vw, 6.5rem); }
.section--panel { background: var(--panel); }
.section__head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: flex-end;
  justify-content: space-between;
}
.section__head--split > div { max-width: 62ch; }

/* ----------------------------------------------------------------- cards -- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
}
.card {
  background: var(--panel-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(0, 168, 232, 0.45); transform: translateY(-3px); }
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--asphalt); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__media img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) { .card:hover .card__media img { transform: none; } }
.card__body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__body p { color: var(--muted); font-size: 0.95rem; }
.card__foot { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }

.card--paused .card__media img { filter: grayscale(1); opacity: 0.55; }
.card--paused:hover .card__media img { transform: none; }

.price-badge {
  position: absolute;
  left: 0.85rem; bottom: 0.85rem;
  background: rgba(23, 24, 28, 0.9);
  border: 1px solid rgba(0, 168, 232, 0.5);
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
}

.price-badge--paused {
  color: var(--closed);
  border-color: rgba(217, 117, 107, 0.5);
}

.card__link {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card__link svg { width: 0.9em; height: 0.9em; transition: transform 0.2s ease; }
.card__link:hover svg { transform: translateX(3px); }

/* -------------------------------------------------------- service detail -- */
.service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.4rem, 5vw, 4rem);
  border-top: 1px solid var(--line-soft);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.service:first-of-type { border-top: 0; }
.service:nth-child(even) .service__media { order: 2; }
.service__media { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--panel-2); }
.service__media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; }
.service__num {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--dim);
  margin-bottom: 0.6rem;
}
.service h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
.service p { color: var(--muted); }
.service__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}
.service__meta li {
  font-family: var(--display);
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.8rem;
}
.service__meta li.is-price { color: var(--accent); border-color: rgba(0, 168, 232, 0.45); background: var(--accent-dim); }
@media (max-width: 780px) {
  .service { grid-template-columns: 1fr; }
  .service:nth-child(even) .service__media { order: 0; }
}

/* A stopped service keeps its block and its place in the rhythm. The photo
   goes flat and carries the notice; the rates stay, struck through. */
.service--paused .service__media img { filter: grayscale(1); opacity: 0.32; }
.service__hold {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(23, 24, 28, 0.5), rgba(23, 24, 28, 0.78));
}
.service__hold-icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  color: var(--closed);
  background: rgba(23, 24, 28, 0.7);
  border: 1px solid rgba(217, 117, 107, 0.45);
}
.service__hold-icon svg { width: 1.55rem; height: 1.55rem; }
.service__hold-badge {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.service--paused h2, .service--paused .service__num { color: var(--dim); }
.service--paused .service__meta li,
.service--paused .service__meta li.is-price {
  color: var(--dim);
  border-color: var(--line-soft);
  background: none;
}
.service__hold-foot { margin-bottom: 0; }
.service__hold-foot a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service__hold-foot svg { width: 0.9em; height: 0.9em; transition: transform 0.2s ease; }
.service__hold-foot a:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------- the specialism -- */
.hd__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.hd__media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-2);
  margin-bottom: 1.1rem;
}
.hd__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.hd__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  padding-top: 0.9rem;
  border-top: 2px solid var(--accent);
  letter-spacing: 0.05em;
}
.hd__item p { font-size: 0.95rem; color: var(--muted); margin: 0; line-height: 1.55; }
.hd__credit {
  margin: clamp(1.6rem, 3.5vw, 2.2rem) 0 0;
  font-size: 0.8rem;
  color: var(--dim);
}
.hd__note {
  margin: 0.5rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.86rem;
  color: var(--dim);
}

.hd-strip__inner { max-width: 62ch; }
.hd-strip__inner .lede { margin-bottom: 1.2rem; }

/* ------------------------------------------------------------ bob stories -- */
.bob-story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3.4rem);
  align-items: start;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line-soft);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.bob-story:first-of-type { border-top: 0; padding-top: 0; }
.bob-story__media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-2);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.bob-story__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.bob-story--flip .bob-story__media { order: 2; }
/* order moves the media into the second cell, so mirror the track sizes
   too — otherwise the flipped portrait renders in the wider column. */
.bob-story--flip { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); }
.bob-story__body > p { color: var(--muted); }
.bob-story__body > p.lede { color: var(--muted); }
@media (max-width: 820px) {
  .bob-story { grid-template-columns: 1fr; }
  .bob-story--flip .bob-story__media { order: 0; }
  .bob-story__media { position: static; }
  .bob-story__media img { max-height: 460px; }
}

.bob__role {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.bob-story__body h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 0.7rem; }

.pull-quote {
  margin: 1.9rem 0;
  padding: 0.2rem 0 0.2rem 1.3rem;
  border-left: 3px solid var(--accent);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: var(--text);
}
.pull-quote cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.bob__socials { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.icon-btn:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-dim); }
.icon-btn svg { width: 18px; height: 18px; }

/* ----------------------------------------------------------------- hours -- */
.hours { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.hours caption { text-align: left; margin-bottom: 0.9rem; color: var(--muted); font-size: 0.92rem; }
.hours th, .hours td { padding: 0.62rem 0.2rem; border-bottom: 1px solid var(--line-soft); text-align: left; }
.hours th {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr[data-today="true"] th { color: var(--accent); }
.hours tr[data-today="true"] td { color: var(--accent); font-weight: 600; }
.hours .is-closed { color: var(--dim); }

/* ------------------------------------------------------------ split grid -- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}
.panel {
  background: var(--panel-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.1rem);
}
.panel h2, .panel h3 { margin-top: 0; }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-list svg { width: 21px; height: 21px; color: var(--accent); flex: none; margin-top: 3px; }
.contact-list dt, .contact-list__label {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.1rem;
}
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list__value { font-size: 1.05rem; color: var(--text); }

/* ------------------------------------------------------------------ form -- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.38rem; }
.field label {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--text);
  background: var(--asphalt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.72rem 0.85rem;
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field input:user-invalid, .field select:user-invalid { border-color: var(--closed); }
.field__hint { font-size: 0.85rem; color: var(--dim); }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.1rem; }
.form__note { font-size: 0.88rem; color: var(--dim); }

.form-status {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--accent-dim);
  padding: 0.85rem 1rem;
  font-size: 0.93rem;
}

/* ---------------------------------------------------------------- prices -- */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.price-card {
  border: 1px solid var(--line-soft);
  background: var(--panel-2);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.price-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.price-card__amount {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}
.price-card__unit { font-size: 0.86rem; color: var(--dim); margin-bottom: 1rem; }
.price-card p { font-size: 0.92rem; color: var(--muted); }
.price-card .btn { margin-top: auto; }
.price-card--paused { border-color: rgba(217, 117, 107, 0.3); }
.price-card--paused .price-card__amount { color: var(--dim); }
.price-card p.price-card__flag {
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--closed);
  margin-bottom: 0.5rem;
}

/* ------------------------------------------------------------------- cta -- */
.cta-band {
  background:
    linear-gradient(90deg, rgba(23,24,28,0.95) 20%, rgba(23,24,28,0.55) 100%),
    var(--panel-2);
  border-block: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.cta-band__bg { position: absolute; inset: -14% 0; z-index: 0; opacity: 0.32; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band__inner {
  padding-block: clamp(3rem, 7vw, 4.8rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.cta-band h2 { margin-bottom: 0.3em; }
.cta-band p { color: var(--muted); max-width: 46ch; margin: 0; }

/* ---------------------------------------------------------------- footer -- */
.site-footer {
  background: #121317;
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(2.6rem, 6vw, 4rem) 1.6rem;
  font-size: 0.95rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem clamp(1.5rem, 4vw, 3rem);
}
.footer h2, .footer__title {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.site-footer .muted { color: var(--muted); }
.footer__brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer__bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  color: var(--dim);
  font-size: 0.88rem;
}
.footer__bottom a { color: var(--dim); }
.footer__tm { flex-basis: 100%; max-width: 78ch; font-size: 0.8rem; line-height: 1.5; }
.footer__socials { display: flex; gap: 0.5rem; margin-top: 1.1rem; }

/* ---------------------------------------------------------------- motion -- */
[data-parallax] { will-change: transform; }

/* Copy lifts in once the page is ready; without JS it is simply visible. */
.js .fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) var(--d, 0s),
              transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) var(--d, 0s);
}
.js.is-ready .fade-up { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .fade-up { opacity: 1; transform: none; transition: none; }
  [data-parallax] { transform: none !important; }
  .hero__scroll span { animation: none; }
}

/* ---------------------------------------------------------------- reveal -- */
/* Only hide pending reveals when JS is actually running to bring them back. */
.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------------------------------------------- 404 -- */
.notfound { min-height: 62vh; display: grid; place-items: center; text-align: center; padding-block: 4rem; }
.notfound h1 { font-size: clamp(4rem, 18vw, 10rem); color: var(--accent); margin-bottom: 0.1em; }

/* ------------------------------------------------------------- utilities -- */
.framed {
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-2);
}
.framed img { width: 100%; }
.split--media { align-items: center; }

/* Honeypot: off-screen for humans, tempting for bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.media-cap { border-radius: var(--radius); overflow: hidden; }
.media-cap img { width: 100%; max-height: 420px; object-fit: cover; object-position: center 40%; }

.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.35rem, 2.6vw, 1.8rem); margin-top: 2.4em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2rem; color: var(--muted); }
.prose li { margin-bottom: 0.4rem; }
.mt-2 { margin-top: 2rem; }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
