:root {
  --copper: #c47a3d;
  --copper-light: #e3a15e;
  --red: #b83d23;
  --cream: #f4e7d2;
  --ink: #000000;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 42px 20px;
  background: #000;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(196, 122, 61, .35);
  pointer-events: none;
}

.hero::after {
  inset: 25px;
  border-color: rgba(196, 122, 61, .12);
}

.texture {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    repeating-linear-gradient(15deg, transparent 0 9px, rgba(255,255,255,.018) 10px),
    repeating-linear-gradient(105deg, transparent 0 13px, rgba(0,0,0,.11) 14px);
}

.content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  text-align: center;
}

.logo {
  display: block;
  width: min(330px, 67vw);
  height: auto;
  margin: 0 auto 24px;
  border-radius: 50%;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.52));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--copper-light);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 2px 0 8px;
  color: #c84929;
  font-family: "Bruno Ace SC", "Arial Black", sans-serif;
  font-size: clamp(2.8rem, 8.7vw, 5.9rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .055em;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #6e2115;
  text-shadow:
    0 2px 0 #7c291b,
    0 5px 0 #2b0d08,
    0 10px 20px rgba(0,0,0,.95);
}

.motto {
  margin: 16px 0 18px;
  color: var(--copper-light);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  font-weight: 600;
  letter-spacing: .035em;
}

.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(460px, 80%);
  margin: 0 auto 18px;
}

.rule::before, .rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--copper));
}

.rule::after { transform: rotate(180deg); }

.rule span {
  width: 9px;
  height: 9px;
  margin: 0 12px;
  border: 1px solid var(--copper);
  transform: rotate(45deg);
}

.services {
  max-width: 660px;
  margin: 0 auto 28px;
  color: rgba(244, 231, 210, .82);
  font-size: clamp(.78rem, 2vw, .98rem);
  line-height: 1.8;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.services b { color: var(--red); padding: 0 .28em; }

.button {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--copper-light);
  border-radius: 2px;
  background: linear-gradient(135deg, #b8652f, #8e3c22);
  color: #fff8ec;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .18s ease, filter .18s ease;
}

.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.button:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }

.location {
  margin: 18px 0 0;
  color: rgba(244, 231, 210, .58);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .hero { padding: 34px 22px; }
  .hero::before { inset: 10px; }
  .hero::after { inset: 15px; }
  .logo { margin-bottom: 20px; }
  .services { max-width: 330px; }
}

@media (prefers-reduced-motion: reduce) {
  .button { transition: none; }
}
