/* ---------------------------------------------
   Tokens
--------------------------------------------- */
:root {
  --ink: #14181B;
  --white: #F7F5F0;
  --blue: #3E6FF2;
  --yellow: #F4B740;
  --red: #E8432C;

  --font-display: "Archivo Black", sans-serif;
  --font-body: "Work Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --edge: clamp(24px, 6vw, 96px);
}

/* ---------------------------------------------
   Base
--------------------------------------------- */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

/* accessible to screen readers and search engines, invisible on screen */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------
   Hero — name is the whole show
--------------------------------------------- */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: clamp(28px, 4vw, 48px) var(--edge) clamp(56px, 9vh, 96px);
}

.hero__top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: clamp(24px, 5vh, 56px);
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 16vw, 11rem);
  line-height: 0.86;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  text-transform: uppercase;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 42ch;
  color: #C9C7BE;
  margin: 0;
}

/* ---------------------------------------------
   Offerings — flat color blocks
--------------------------------------------- */
.offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.offer {
  padding: clamp(32px, 5vw, 52px) clamp(24px, 3vw, 40px);
  border-left: 4px solid var(--ink);
  color: var(--ink);
}

.offer--blue   { background: var(--blue);   color: var(--white); }
.offer--yellow { background: var(--yellow); color: var(--ink); }
.offer--red    { background: var(--red);    color: var(--white); }

.offer__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--white);
  margin-bottom: 20px;
}

.offer--yellow .offer__tag {
  background: var(--ink);
  color: var(--yellow);
}

.offer__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.offer__text {
  margin: 0;
  max-width: 34ch;
  font-size: 0.98rem;
}

@media (max-width: 820px) {
  .offerings { grid-template-columns: 1fr; }
  .offer { border-left: none; border-top: 4px solid var(--ink); }
}

/* ---------------------------------------------
   Also / hint section
--------------------------------------------- */
.also {
  max-width: 900px;
  padding: clamp(40px, 6vh, 64px) var(--edge) 0;
}

.also p {
  max-width: 58ch;
  font-size: 1.15rem;
  color: #3A3A34;
  margin: 0;
}

/* ---------------------------------------------
   CTA
--------------------------------------------- */
.cta {
  padding: clamp(56px, 9vh, 96px) var(--edge);
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 28px;
  max-width: 16ch;
}

.cta__button {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--white);
  background: var(--ink);
  padding: 16px 24px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.cta__button:hover {
  background: var(--blue);
}

/* ---------------------------------------------
   Footer
--------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 24px var(--edge);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__name {
  font-weight: 700;
  color: var(--yellow);
}
