:root {
  --gold: #917c35;
  --gold-light: #d1bb68;
  --black: #080806;
  --green: #2f6b3f;
  --green-dark: #1d4128;
  --cream: #f8f5ec;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  font-size: 16px;
}

body {
  min-height: 100vh;
  font-family: "Lato", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(145, 124, 53, 0.35), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(47, 107, 63, 0.35), transparent 30rem),
    linear-gradient(135deg, #15130d 0%, var(--black) 58%, #101b13 100%);
}

a {
  color: inherit;
}

.coming-soon {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.coming-soon::before,
.coming-soon::after {
  position: absolute;
  z-index: 0;
  width: 20rem;
  height: 20rem;
  content: "";
  border: 1px solid rgba(209, 187, 104, 0.18);
  border-radius: 999px;
}

.coming-soon::before {
  top: -7rem;
  right: -5rem;
}

.coming-soon::after {
  bottom: 4rem;
  left: -8rem;
  border-color: rgba(47, 107, 63, 0.28);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1;
  place-items: center;
  width: 100%;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.brand-card {
  width: min(100%, 55rem);
  padding: clamp(1.5rem, 5vw, 4.5rem);
  text-align: center;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(209, 187, 104, 0.42);
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42);
}

.logo {
  display: block;
  width: min(100%, 28rem);
  margin: 0 auto clamp(1.5rem, 4vw, 2.4rem);
  filter: drop-shadow(0 1.25rem 1.25rem rgba(8, 8, 6, 0.12));
}

.eyebrow {
  margin-bottom: 0.7rem;
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 46rem;
  margin: 0 auto;
  font-size: clamp(2.1rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--black);
  letter-spacing: -0.06em;
}

.intro {
  max-width: 38rem;
  margin: 1.2rem auto 1.7rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: #39382f;
}

.phone-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 8vw, 5.25rem);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  text-decoration: none;
  text-shadow: 0.07em 0.07em 0 rgba(8, 8, 6, 0.1);
}

.phone-link:hover,
.phone-link:focus {
  color: var(--green);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  min-height: 3.3rem;
  padding: 0.9rem 1.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 0.8rem 1.5rem rgba(47, 107, 63, 0.3);
}

.button-secondary {
  color: var(--black);
  background: var(--gold-light);
  border-color: rgba(145, 124, 53, 0.35);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 1.1rem;
  padding: 1rem clamp(1rem, 4vw, 2rem) 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.built-by {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.built-by a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  font-weight: 900;
  color: var(--black);
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  box-shadow: 0 0.7rem 1.4rem rgba(0, 0, 0, 0.25);
}

.built-by a:hover,
.built-by a:focus {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--gold));
}

@media (max-width: 640px) {
  .hero {
    align-items: start;
    padding-top: 1rem;
  }

  .brand-card {
    padding: 1.25rem;
  }

  .logo {
    width: min(100%, 20rem);
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 1rem;
    font-size: 0.82rem;
  }
}
