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

html, body {
  min-height: 100vh;
  background-color: #F3F0E9;
  font-family: system-ui, sans-serif;
  overflow-x: hidden; 
}

/* ----------------------------------------------------
   PAGE WRAPPER (match other pages)
---------------------------------------------------- */
.about-main {
  width: min(1207px, 100%);
  height: calc(100vh - 130px);
  margin: 70px auto 80px;  
  padding: 0 24px;         /* small responsive gutter */
  position: relative;
   overflow: hidden;
}

/* ----------------------------------------------------
   HERO / TITLE AREA
---------------------------------------------------- */
.about-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(40px, 6vh, 80px);
  padding-top: clamp(10px, 3vh, 30px); /* gentle consistent drop */
}

.about-name {
  text-align: center;
}

/* Two-line title */
.about-line {
  display: block;
  font-family: "NauryzRedkeds", sans-serif;
  font-size: clamp(96px, 14vw, 170px);
  line-height: 0.9;
  color: #B34135;
}

/* Star beside title */
.about-star {
  position: absolute;
  left: clamp(8px, 2vw, 20px); 
  bottom: clamp(-20px, -3vh, -40px);
  font-family: "NauryzRedkeds", sans-serif;
  font-size: clamp(200px, 18vw, 340px);
  color: #37446F;
  line-height: 0.8;
  pointer-events: none;
}

/* ----------------------------------------------------
   BOTTOM ROW LAYOUT
---------------------------------------------------- */
.about-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 6vw, 100px);
  align-items: start;
  width: 100%;
}

/* Left info block */
.about-info {
  width: min(520px, 100%);  /* ✅ no negative margins */
}

/* Body copy */
.about-copy {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.8;
  color: #37446F;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 14px;
}

/* "Typeface" label line */
.about-copy-title {
  display: block;
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 24px);
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

/* Links */
.about-copy a {
  color: #37446F;
  text-decoration: underline;
  font-weight: 500;
}

/* ----------------------------------------------------
   GLYPH GRID (right side)
---------------------------------------------------- */
.glyph-wrap {
  justify-self: end;   /* keeps grid on right */
}

/* 8 per row */
.glyph-grid {
  display: grid;
  grid-template-columns: repeat(8, clamp(34px, 3vw, 44px));
  gap: clamp(8px, 1.1vw, 12px);
  justify-content: end;
/*  margin-top: clamp(-30px, -3vw, -50px); */
  margin-top: clamp(-60px, -6vw, -100px); 
}

/* Circle glyphs */
.glyph {
 width: clamp(34px, 3vw, 44px);
height: clamp(34px, 3vw, 46px);
  border-radius: 50%;
  border: 2px solid #B34135;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "NauryzRedkeds", sans-serif;
  font-size: clamp(12px, 1.1vw, 16px);
  color: #37446F;
  text-transform: uppercase;
}
/*
.scroll-hint {
  margin: 10px 0 40px;
  margin-top: clamp(20px, 4vh, 40px);
  padding: 6px 18px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.35);
  color: #F3F0E9;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background-color 0.25s ease;
}

.scroll-hint:hover {
  background-color: rgba(0, 0, 0, 0.55);
  
}  */

.scroll-hint {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.25s ease;
  padding: 8px 22px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.35);
  color: #F3F0E9;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  z-index: 10; /* stay above letters */
}
.scroll-hint:hover {
  background-color: rgba(0, 0, 0, 0.55); /* slightly stronger on hover */
}

@media (max-width: 900px) {
  .about-bottom {
    grid-template-columns: 1fr;
  }

  .glyph-wrap {
    justify-self: center;
    margin-top: 24px;
  }

  .glyph-grid {
    justify-content: center;
  }

  .about-star {
    left: clamp(-60px, -8vw, -160px);
  }
}
