@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-SemiBold-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Regular-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: var(--trin-font-body);
  background: var(--trin-white);
  color: var(--trin-navy);
  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 280px;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.landing {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(40px, 8vh, 96px) 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.identity { width: 100%; }

/* The SVG canvas centers the official paths with at least one bar-height of clear space. */
.brand-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
}

.tagline {
  margin: 32px 0 0;
  color: var(--trin-graphite);
  font-size: clamp(10px, 1.3vw, 12px);
  line-height: 1.8;
  letter-spacing: clamp(0.025em, 0.2vw, 0.16em);
}

.message { margin-top: clamp(40px, 7vh, 72px); }

h1 {
  margin: 0;
  font-family: var(--trin-font-heading);
  font-size: clamp(22px, 3.2vw, 42px);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.coming-soon {
  margin: 24px 0 0;
  color: var(--trin-graphite);
  font-size: 16px;
  line-height: 1.6;
}

.contact {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: clamp(32px, 6vh, 64px);
  padding: 8px;
  color: var(--trin-navy);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-color: var(--trin-graphite);
  text-underline-offset: 5px;
}

.contact:hover { text-decoration-thickness: 2px; }

.contact:focus-visible {
  outline: 2px solid var(--trin-navy);
  outline-offset: 5px;
  border-radius: 2px;
}

.footer {
  margin: 0 clamp(20px, 5vw, 72px);
  padding: 24px 0 max(24px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--trin-light-gray);
  text-align: center;
  color: var(--trin-graphite);
}

.footer small { font-size: 12px; line-height: 1.5; }
