/* BODHI Bikes — closing notice. Self-contained; the old site's stylesheet is gone. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #090e14;
  --deep:  #0d1a24;
  --ocean: #1a8fa0;
  --sand:  #c9b99a;
  --foam:  #f0ece5;
  --muted: #8aa0ad;
  --border: rgba(255,255,255,0.10);
}

body {
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--foam);
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100vh;
  padding: 40px 24px;
}

.wrap {
  margin: auto;
  max-width: 560px;
  width: 100%;
}

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 44px;
  opacity: 0.85;
}

h1 {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(52px, 11vw, 84px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--sand);
  margin-bottom: 18px;
}

p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

.owners {
  margin: 44px 0;
  padding: 28px;
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.owners h2 {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--foam);
  margin-bottom: 12px;
}

.owners p { margin-bottom: 18px; }
.owners p:last-child { margin-bottom: 0; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  background: var(--ocean);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-radius: 3px;
}

.btn:hover, .btn:focus-visible { background: #22a7bb; }

.contact { font-size: 15px; }
a { color: var(--ocean); }
a:hover, a:focus-visible { color: var(--sand); }

:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }
