:root {
  --yellow: #f7b719;
  --charcoal: #252525;
  --muted: #747b85;
  --paper: #f8f8f6;
  --line: #deded9;
}

* { box-sizing: border-box; }

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

body {
  font-family: "Arial Narrow", "Roboto Condensed", Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--charcoal);
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at 84% 20%, rgba(247,183,25,.08), transparent 24rem),
    var(--paper);
}

.accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 26px;
  background: var(--yellow);
}

.corner-mark {
  position: absolute;
  right: clamp(32px, 7vw, 110px);
  top: 0;
  width: 26px;
  height: 110px;
  background: var(--yellow);
  transform: skew(-7deg);
  transform-origin: top;
}

.content {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 86px) 0 56px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 46px;
}

.logo {
  width: clamp(255px, 28vw, 390px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.message {
  align-self: center;
  max-width: 940px;
  padding: 18px 0 28px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--yellow);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .05em;
}

h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: .98;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.intro {
  margin: 34px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.contact {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
}

.contact-label {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .08em;
  color: #666b73;
}

.contact a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 4px;
  transition: opacity .2s ease;
}

.contact a:hover,
.contact a:focus-visible { opacity: .65; }

@media (max-width: 700px) {
  .accent-bar { width: 14px; }
  .corner-mark { right: 28px; width: 18px; height: 76px; }
  .content { width: calc(100% - 54px); padding: 42px 0 34px; gap: 34px; }
  .logo { width: 230px; max-width: 78vw; }
  .message { padding-top: 22px; }
  h1 { font-size: clamp(40px, 11vw, 58px); }
  .intro { font-size: 18px; margin-top: 26px; }
  .contact { align-items: flex-start; flex-direction: column; gap: 10px; }
  .contact a { font-size: 21px; overflow-wrap: anywhere; }
}
