:root {
  --bg: #7a1014;
  --fg: #f2efe7;
  --muted: #e5ded0;
  --rule: rgba(242, 239, 231, 0.35);
  --btn-bg: #f2efe7;
  --btn-fg: #7a1014;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Avenir Next", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

.wrap {
  min-height: 100vh;
  width: min(920px, 92vw);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.5rem;
  text-align: center;
}

.eyebrow {
  margin: 0.6rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  color: var(--muted);
}

h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
  font-size: clamp(2rem, 7vw, 4.1rem);
  font-weight: 400;
}

.engine-wrap {
  margin: 0;
}

.engine-image {
  width: min(280px, 52vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: saturate(1.22) contrast(1.18) brightness(1.03)
    drop-shadow(0 7px 10px rgba(0, 0, 0, 0.4));
}

.engine-foot {
  margin-top: auto;
  padding-top: 0.5rem;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.inquiry p {
  margin: 0.8rem 0 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.cta {
  margin-top: 1.15rem;
}

.cta a {
  display: inline-block;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 3px;
  border: 1px solid transparent;
  font-weight: 600;
}

.cta a:hover,
.cta a:focus-visible {
  border-color: var(--fg);
  outline: none;
}
