:root {
  --bg: #f5f2ec;
  --text: #171717;
  --muted: #3a3936;
  --accent: #b8a58b;
  --rule: rgba(92, 76, 57, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7vh 7vw 4.5vh;
}

.identity {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.logo-wrap {
  position: relative;
  width: min(340px, 66vw);
  aspect-ratio: 1.18 / 1;
  margin: 0 auto 1.8rem;
}

.texas-outline,
.spur {
  display: block;
  max-width: none;
  user-select: none;
  pointer-events: none;
}

.texas-outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spur-wrap {
  position: absolute;
  left: 37.9%;
  top: 27.1%;
  width: 43%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.spur {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.glint {
  position: absolute;
  top: 4%;
  left: -25%;
  width: 12%;
  height: 58%;
  transform: translate(0, -20%) rotate(36deg);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0)
  );
  filter: blur(1.5px);
  mix-blend-mode: screen;
  animation: spur-glint 1.5s ease-out 1.1s 1 forwards;
}

@keyframes spur-glint {
  from { transform: translate(0, -20%) rotate(36deg); opacity: 0; }
  18% { opacity: 1; }
  78% { opacity: 1; }
  to { transform: translate(600%, 70%) rotate(36deg); opacity: 0; }
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.3rem);
  letter-spacing: 0.12em;
  line-height: 1.02;
}

.accent-line {
  width: 108px;
  height: 2px;
  margin: 2rem auto 1.5rem;
  background: var(--accent);
}

.descriptor {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.78rem, 1.5vw, 1rem);
}

.contact {
  margin-top: 5rem;
}

.contact-label {
  margin: 0 0 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
}

.contact a {
  color: var(--text);
  text-decoration: none;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

footer {
  width: min(1180px, 100%);
  margin: 5rem auto 0;
  text-align: center;
}

.footer-rule {
  width: 100%;
  height: 1px;
  background: var(--rule);
  margin-bottom: 2.1rem;
}

footer p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

@media (max-width: 640px) {
  .page-shell {
    padding: 3.5rem 1.4rem 2rem;
  }

  .logo-wrap {
    width: min(275px, 76vw);
    margin-bottom: 1.4rem;
  }

  h1 {
    letter-spacing: 0.08em;
  }

  .accent-line {
    margin-top: 1.5rem;
  }

  .descriptor {
    letter-spacing: 0.14em;
    line-height: 1.6;
  }

  .contact {
    margin-top: 3.5rem;
  }

  footer {
    margin-top: 4rem;
  }

  footer p {
    line-height: 1.7;
    letter-spacing: 0.12em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glint {
    animation: none;
    display: none;
  }
}
