:root {
  /* Default (desktop-ish) overlay anchors — % of image height */
  --y-title: 7%;
  --y-tag: 16%;
  --y-contact: 72%;
  --y-fine: 95%;

  --max-width: 900px;
  --text: #222;
  --button-bg: #000;
  --button-fg: #fff;
}

/* page + card */
html,
body {
  height: 100%;
}
body {
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  background: url("../img/tile.png") repeat center top;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.card {
  max-width: var(--max-width);
  width: min(92vw, var(--max-width));
}

/* container is the positioning context for the fine print */
.awcContainer {
  position: relative;
  width: 100%;
  padding-bottom: 40px;
}

/* artwork + overlays */
.awcAssembly {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}

/* full-frame image drives the height */
.awcWrapMain img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}


/* ---- overlay blocks pinned by % of image height ---- */
.awcTitle,
.tagline,
.awcWrapContact,
.fineprint,
.awcCopyright {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  margin: 0;
  z-index: 2;
  /* subtle contrast help on busy pixels */
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}



.awcCopyright {
  margin-top: 24px;
}

/* anchor them */
.awcTitle {
  top: var(--y-title);
}
.tagline {
  top: var(--y-tag);
}
.awcWrapContact {
  top: var(--y-contact);
}
.fineprint {
  top: var(--y-fine);
}

/* type */
.awcTitle {
  font-family: "Times New Roman", Times, serif;
  font-weight: 600;
  line-height: 1.05;
  /* smaller floor so phones don’t overlap the line art */
  font-size: clamp(1.7rem, 3.6vw + 0.5rem, 3rem);
  letter-spacing: 0.02em;
}
.awcFW200 {
  font-weight: 200;
}

.tagline {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  line-height: 1.1;
  font-size: clamp(1rem, 2.4vw + 0.2rem, 1.8rem);
}

.awcInfo {
  line-height: 1.1;
  font-weight: 700;
  /* clamp so “For information:” doesn’t wrap on tiny widths */
  font-size: clamp(1rem, 1.2vw + 0.7rem, 1.4rem);
  margin: 0 0 0.5rem;
}

/* button */
.btn {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border-radius: 6px;
  background: var(--button-bg);
  color: var(--button-fg);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(0.85rem, 1vw + 0.55rem, 1rem);
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}

/* fine print */
.awcCopyright,
.fineprint {
  font-size: clamp(0.8rem, 0.5vw + 0.5vw + 0.65rem, 1rem);
  font-style: italic;
  text-align: center;
  margin-top: 4rem;
}

/* address link */
.awcAddress {
  font-size: clamp(0.9rem, 0.5vw + 0.65rem, 1.3rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  margin: 1rem 0;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  top: 82%;
}

/* ---------- responsive position tweaks ---------- */
/* Big tablet */
@media (max-width: 720px) {
  :root {
    --y-title: 8%;
    --y-tag: 17%;
    --y-contact: 75%;
    --y-fine: 86%;
  }
  .awcAddress {
    top: 83%;
  }
  
  /* Adjust padding for mobile */
  body {
    padding: 18px;
    padding-top: 35px;
  }
}

/* Small tablet / large phone */
@media (max-width: 560px) {
  :root {
    --y-title: 9%;
    --y-tag: 18%;
    --y-contact: 76%;
    --y-fine: 87%;
  }
  .awcAddress {
    top: 84%;
  }
  
  /* Adjust padding for mobile */
  body {
    padding: 18px;
    padding-top: 35px;
  }
}

/* Narrow phones (~375–440px) */
@media (max-width: 440px) {
  :root {
    --y-title: 10%;
    --y-tag: 19%;
    --y-contact: 77%;
    --y-fine: 88%;
  }
  .awcAddress {
    top: 85%;
  }
  
  /* More spacing for smaller phones */
  body {
    padding: 15px;
    padding-top: 25px;
  }
}

/* Very narrow (≤360px) */
@media (max-width: 360px) {
  :root {
    --y-title: 11%;
    --y-tag: 20%;
    --y-contact: 75%;
    --y-fine: 95%;
  }
  .awcAddress {
    top: 85%;
  }
  
  .awcCopyright {
    margin-top: 6rem;
  }
  
  /* Reduce padding on very small screens */
  body {
    padding: 15px;
    padding-top: 20px;
  }
  
  .awcContainer {
    padding-bottom: 30px;
  }
}

.awcTextCenter {
  text-align: center !important;
}