/* ============================================================
   UNCLE TIBO — COMING SOON
   Stack: Vanilla CSS, Plus Jakarta Sans
   Palette: #F5F2EC | #F4B527 | #000000
============================================================ */

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

:root {
  --bg:      #F5F2EC;
  --mustard: #F4B527;
  --black:   #000000;
  --grey:    #444444;
  --font:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ============ HEADER ============ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2.5rem;
}

.header__logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.header__cta {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: var(--mustard);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 5px;
  transition: background 0.25s ease;
}

.header__cta:hover {
  background: #dba220;
}

/* ============ HERO ============ */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2.5rem 2.5rem;
}

/* Illustration + TIBO stack row */
.hero__content {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.hero__illustration {
  max-width: 360px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__illustration img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}


/* Text block */
.hero__text {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.hero__heading {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.hero__body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--grey);
  max-width: 420px;
  margin: 0 auto;
}

/* ============ FOOTER ============ */

.footer {
  background: var(--mustard);
  color: var(--black);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem;
  min-height: 240px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}

.footer__address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer__links a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.footer__links a:hover {
  opacity: 0.7;
}

.footer__map {
  border-radius: 8px;
  overflow: hidden;
  min-height: 200px;
}

.footer__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 768px) {
  .header__inner {
    padding: 1rem 1.25rem;
  }

  .hero {
    padding: 1rem 1.25rem 2rem;
  }

  .hero__content {
    margin-bottom: 1.25rem;
  }

  .hero__illustration {
    max-width: 260px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .header__logo {
    font-size: 1rem;
  }

  .header__cta {
    padding: 0.45rem 0.9rem;
    font-size: 0.65rem;
  }

  .hero__illustration {
    max-width: 180px;
  }

  .hero__heading {
    font-size: 1.15rem;
  }

  .hero__body {
    font-size: 0.85rem;
  }
}
