:root{
  /* Quick knobs */
  --safe: clamp(16px, 4vw, 48px);
  --text: #0f3a2a;        /* dark green */
  --accent: #f1d36a;      /* warm yellow */
  --shadow: 0 6px 20px rgba(0,0,0,.12);
}

@font-face {
  font-family: "Font One";
  src: url("fonts/FontOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*{ box-sizing: border-box; }

html, body { height: 100%; }
body{
  margin: 0;
  font-family: "Font One", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #dff3f6;
  color: #0f3a2a;
}

/* Full screen stage */
.stage{
  position: relative;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
}

/* Background image */
.bg{
  position: absolute;
  inset: 0;
  background-image: url("bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.01); /* tiny scale avoids edge gaps */
}

/* Text overlay container */
.overlay{
  position: absolute;
  inset: 0;
  padding: var(--safe);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: clamp(12px, 2vw, 24px);
}

/* Top brand */
.brand{
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
}
.mark{
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(32px, 4.1vw, 46px);
  text-shadow: var(--shadow);
}

/** Big COMING SOON
.hero{
  grid-column: 1 / -1;
  align-self: center;
  justify-self: center;
  text-align: center;
}

.coming{
  margin: 0;
  line-height: .9;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(42px, 5.4vw, 60px);
  color: var(--accent);
  text-shadow: var(--shadow);
}

**/

/* Scribbly notes */
.note{
  align-self: start;
  max-width: 42ch;
}
.note-left{
  grid-column: 1 / 2;
  justify-self: start;
  align-self: start;
}
.note-right{
  grid-column: 2 / 3;
  justify-self: end;
  align-self: center;
  text-align: right;
}

.scribble{
  margin: 0;
  font-weight: 650;
  font-size: clamp(42px, 5.4vw, 60px);
  text-shadow: var(--shadow);
}

/* Bottom contact */
.contact{
  grid-column: 1 / -1;
  align-self: end;
  justify-self: center;
  text-align: center;
  display: grid;
  gap: 6px;
}

.door{
  margin: 0;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--shadow)          /* 👈 yellow */
  text-shadow: var(--shadow);
}

.email{
  display: inline-block;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--accent);          /* 👈 yellow */
  text-decoration: none;
  border-bottom: 2px solid rgba(241,211,106,.6); /* yellow underline */
  padding-bottom: 2px;
}

.email:hover{
  color: var(--shadow);          /* 👈 yellow */
  border-bottom-color: var(--shadow);
}


/* Mobile layout tweaks */
@media (max-width: 640px){
  @media (max-width: 640px){
    .overlay{
      grid-template-columns: 1fr;
      grid-template-rows: auto auto 1fr auto auto;
      justify-items: center;     /* ✅ centers grid items */
      text-align: center;        /* ✅ default text center */
    }
  
    .brand,
    .hero,
    .contact{
      justify-self: center;
      text-align: center;
    }
  
      .note-left{
        margin-top: clamp(24px, 6vw, 48px); /* 👈 creates room below the mark */
      }
    
    
    .note-left,
    .note-right{
      grid-column: 1 / -1;
      justify-self: center;      /* ✅ center the note blocks */
      text-align: center;        /* ✅ center the note text */
      max-width: 26ch;           /* optional: prevents super long lines */
      margin-left: 0;
      margin-right: 0;
    }
  }
  
}