*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-bg:   #eaeaea;
  --color-text: #404040;
  --font:       'Futura PT', 'Futura', 'Century Gothic', sans-serif;
}

body {
  background:  var(--color-bg);
  color:       var(--color-text);
  font-family: var(--font);
}

/* ── Page shell ──────────────────────────────────────────────── */
/* Left padding = 66px so that text (icon 32px + gap 12px = 44px offset) lands at x=110 */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 48px 60px 64px 66px;
}

/* ── Client block (top) ──────────────────────────────────────── */
.client-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.client-icon {
  width: 30px;
  height: 36px;
  flex-shrink: 0;
}

.client-heading h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--color-text);
}

.client-services {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  color: #6B6B6B;
  padding-left: 44px;
}

/* ── Brand block (bottom) ────────────────────────────────────── */
/* Indent 44px to align with services / "Racing Henk" text (x=110) */
/* 200px top gap from the Racing Henk content                       */
.brand {
  display: flex;
  flex-direction: column;
  padding-left: 44px;
  margin-top: 200px;
  text-decoration: none;
  width: fit-content;
}

/* Grid wrapper: 16px cells, 5 rows tall
   margin-left: -32px → grid bleeds 2 cells to the left of the text
   padding-left: 32px → logo characters align with text below
   padding-right: 32px → 2 cells to the right of the logo           */
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 60px;
  margin-left: -24px;
  padding: 0 60px 0 24px;
  background-image:
    linear-gradient(rgba(0,0,0,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.1) 1px, transparent 1px);
  background-size: 12px 12px;
  margin-bottom: 6px;
  transition: opacity 0.2s ease;
}
.brand:hover .brand-logo-wrap {
  opacity: 0.75;
}

.brand-logo {
  display: block;
  width: 152px;
  height: auto;
}

.brand-trademark {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 20px;
}

.brand-tagline {
  font-size: 32px;
  font-weight: 700;
  color: #6B6B6B;
}

/* ── Mobile ≤ 768px ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .page {
    padding: 36px 24px 48px 24px;
  }
  .client-heading {
    gap: 8px;
  }
  .client-icon {
    width: 22px;
    height: 26px;
  }
  .client-heading h1 {
    font-size: 26px;
  }
  .client-services {
    font-size: 22px;
    padding-left: 30px;
  }
  .brand {
    padding-left: 30px;
    margin-top: 240px;
  }
  .brand-logo {
    width: 110px;
  }
  .brand-tagline {
    font-size: 22px;
  }
}
