:root {
  --orange: #ff8a00;
  --black: #080808;
  --ink: #171717;
  --muted: #6f737b;
  --line: rgba(20,20,20,.12);
  --soft: #fff5e9;
  --shadow: 0 20px 54px rgba(20,25,35,.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.simple-nav {
  position: sticky;
  top: 10px;
  z-index: 20;
  width: min(1120px, calc(100% - 24px));
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(8,8,8,.86);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--orange);
  color: #111;
}
.simple-nav nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.simple-nav nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  padding: 0 12px;
  color: rgba(255,255,255,.84);
  font-weight: 800;
}
.simple-nav nav a.cta { background: var(--orange); color: #111; }

.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  margin-top: -66px;
  padding: 130px 0 54px;
  color: #fff;
  background: #080808;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.34), rgba(0,0,0,.68)),
    var(--hero-image, url("images/colmar-hero.jpg")) center/cover no-repeat;
}
.page-hero .container { position: relative; z-index: 1; }
.eyebrow, .badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 11px;
  background: var(--soft);
  color: #8b4700;
  font-size: 12px;
  font-weight: 900;
}
.page-hero .eyebrow { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.18); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 14px 0; max-width: 800px; font-size: clamp(42px, 7vw, 78px); line-height: 1; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.65; }

.band { padding: 66px 0; }
.band.alt { background: #f7f7f8; }
.section-head { max-width: 760px; margin-bottom: 24px; }
.section-head h2 { font-size: clamp(30px, 5vw, 52px); line-height: 1.06; }
.text-muted { color: var(--muted); line-height: 1.7; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body { padding: 18px; }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-list { display: grid; gap: 12px; }
.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(20,25,35,.06);
}
.feature-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--orange);
  color: #111;
  font-style: normal;
  font-weight: 950;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 0 18px;
  background: #111;
  color: #fff;
  font-weight: 900;
}
.button.primary { background: var(--orange); color: #111; }
.cta-strip {
  border-radius: 26px;
  padding: 24px;
  background: #090909;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-strip p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.mini-note {
  padding: 16px;
  border-radius: 18px;
  background: #fff7eb;
  border-left: 5px solid var(--orange);
  color: #4b3d2d;
}
.contact-float {
  position: fixed;
  right: 14px;
  bottom: 86px;
  z-index: 50;
  display: grid;
  gap: 8px;
}
.contact-float a {
  min-width: 52px;
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #090909;
  color: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
  font-weight: 950;
}
.contact-float a.primary { background: var(--orange); color: #111; }

footer {
  padding: 44px 0 94px;
  background: #070707;
  color: rgba(255,255,255,.72);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .9fr; gap: 22px; }
footer h3, footer strong { color: #fff; }
.footer-links { display: grid; gap: 9px; }
footer a { color: #fff; font-weight: 850; }

@media (max-width: 860px) {
  .simple-nav { align-items: flex-start; }
  .simple-nav nav { justify-content: flex-end; }
  .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: auto; padding-top: 126px; }
  .cta-strip { display: grid; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, 480px); }
  .simple-nav { display: grid; }
  .simple-nav nav { display: grid; grid-template-columns: repeat(2, 1fr); }
  .simple-nav nav a { justify-content: center; }
  h1 { font-size: 42px; }
}
