/*
 * The TMI Guy
 * thetmiguy.com
 */


/* =========================================================
   GLOBAL
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #090909;
  color: #ffffff;
  overflow-x: hidden;
}


/* =========================================================
   HERO
   ========================================================= */
.hero {
     position: relative;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
   
     background:
       linear-gradient(
         90deg,
         rgba(0, 0, 0, 0.96) 0%,
         rgba(0, 0, 0, 0.84) 42%,
         rgba(0, 0, 0, 0.38) 72%,
         rgba(0, 0, 0, 0.58) 100%
       ),
       url("https://res.cloudinary.com/x9mowi40/image/upload/f_auto,q_auto/TheTMIGuy_Codex_3DS_16-9")
       center center / cover no-repeat;
   }



/*
 * Additional bottom shading to transition smoothly
 * into the following section.
 */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.72) 0%,
      transparent 35%
    );

  pointer-events: none;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 6vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 10;
}

.logo {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo span {
  color: #ff4d3d;
}

.coming {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}


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

.content {
  position: relative;
  z-index: 5;

  width: 88%;
  max-width: 1240px;

  padding-top: 50px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 24px;

  color: #ff5a49;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;

  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.075em;

  font-weight: 900;
  text-transform: uppercase;
}

h1 .small {
  display: block;

  margin-top: 18px;

  font-size: 0.33em;
  line-height: 1.05;
  letter-spacing: -0.025em;

  text-transform: none;

  color: rgba(255, 255, 255, 0.72);
}

.intro {
  max-width: 660px;

  margin-top: 38px;

  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.55;

  color: rgba(255, 255, 255, 0.82);
}

.intro strong {
  color: #ffffff;
}

.quote {
  max-width: 650px;

  margin-top: 42px;
  padding-left: 20px;

  border-left: 4px solid #ff4d3d;

  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;

  color: rgba(255, 255, 255, 0.6);
}


/* =========================================================
   SCROLL INDICATOR
   ========================================================= */

.scroll {
  position: absolute;
  bottom: 32px;
  left: 6vw;

  z-index: 8;

  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.45);
}

.scroll::before {
  content: "";

  display: inline-block;

  width: 42px;
  height: 1px;

  margin-right: 14px;

  vertical-align: middle;

  background: rgba(255, 255, 255, 0.4);
}


/* =========================================================
   MANIFESTO
   ========================================================= */

.manifesto {
  padding: 120px 6vw;

  background: #f1eee8;
  color: #111111;
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.manifesto-label {
  margin-bottom: 26px;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: #e23d2f;
}

.manifesto h2 {
  max-width: 1000px;

  font-size: clamp(2.7rem, 6vw, 6.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;

  font-weight: 900;
}

.manifesto h2 span {
  color: #e23d2f;
}


/* =========================================================
   MANIFESTO COPY
   ========================================================= */

.setup {
  display: grid;

  grid-template-columns: 1fr 1fr;
  gap: 80px;

  margin-top: 80px;
  padding-top: 55px;

  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.setup p {
  font-size: 1.15rem;
  line-height: 1.75;

  color: #3b3b3b;
}

.setup strong {
  color: #111111;
}


/* =========================================================
   EXAMPLES
   ========================================================= */

.examples {
  background: #111111;

  padding: 110px 6vw 125px;
}

.examples-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.examples h3 {
  margin-bottom: 55px;

  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.42);
}

.example {
  padding: 28px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.13);

  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.25;
  font-weight: 700;

  color: rgba(255, 255, 255, 0.86);
}

.example span {
  color: #ff5545;
}

.example:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}


/* =========================================================
   TEASE
   ========================================================= */

.tease {
  padding: 125px 6vw;

  text-align: center;

  background: #ff4d3d;
  color: #080808;
}

.tease .tiny {
  margin-bottom: 25px;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.tease h2 {
  max-width: 950px;

  margin: 0 auto;

  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;

  font-weight: 900;
  text-transform: uppercase;
}

.tease p {
  max-width: 630px;

  margin: 35px auto 0;

  font-size: 1.15rem;
  line-height: 1.65;
  font-weight: 600;
}


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

footer {
  display: flex;
  justify-content: space-between;

  gap: 30px;

  padding: 35px 6vw;

  background: #080808;

  color: rgba(255, 255, 255, 0.38);

  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

  /*
   * Keep the portrait height constrained on narrow screens.
   * Move the portrait toward the center so the face remains
   * visible rather than disappearing beyond the right edge.
   */
  .hero {
    background-image:
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.80) 45%,
        rgba(0, 0, 0, 0.28) 100%
      ),
      url("/images/TheTMIGuyHeadshot.png");

    background-repeat:
      no-repeat,
      no-repeat;

    background-size:
      cover,
      auto 100%;

    background-position:
      center,
      65% center;
  }

  .nav {
    padding: 24px 6vw;
  }

  .coming {
    display: none;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 6rem);
  }

  h1 .small {
    font-size: 0.28em;
  }

  .content {
    padding-bottom: 90px;
  }

  .setup {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .manifesto,
  .examples,
  .tease {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  footer {
    flex-direction: column;
  }
}
