/* ============================================================
   Zumo Travel — landing page
   Neo-brutalist: type-led, hard edges, one idea, real empty space.
   Palette + type from the delivered brand system (2023, MLG Design).
   ============================================================ */

@font-face {
  font-family: "BR Shape Super";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/BRShape-Super-BF654c4e075cc7f.otf") format("opentype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
}

:root {
  --black: #000000;
  --white: #ffffff;
  --orange-red: #e95022;
  --orange: #f38221;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  background: var(--black);
  color: var(--white);
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 8vw, 96px) clamp(24px, 7vw, 88px);
}

.hero h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero p {
  margin: clamp(24px, 4vw, 40px) 0 0;
  max-width: 40ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.cta {
  display: inline-block;
  margin-top: clamp(28px, 5vw, 48px);
  padding: 1rem 2.25rem;
  background: var(--orange-red);
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  width: fit-content;
  border: none;
}

.cta:hover,
.cta:focus-visible {
  background: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 1.25rem clamp(24px, 7vw, 88px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer img {
  display: block;
  height: 22px;
  width: auto;
}

.site-footer span {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}
